Skip to content

Commit

Permalink
Revert "chore(deps): bump actions/checkout from 3 to 4"
Browse files Browse the repository at this point in the history
This reverts commit 051804b.
  • Loading branch information
fffonion committed Sep 21, 2023
1 parent ea369f4 commit 02cd600
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/autodocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
echo "LD_LIBRARY_PATH=$INSTALL_ROOT/openssl/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Lookup build cache
uses: actions/cache@v3
Expand All @@ -43,15 +43,15 @@ jobs:

- name: Checkout kong-build-tools
if: steps.cache-deps.outputs.cache-hit != 'true' || github.event.inputs.force_build == 'true'
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
repository: Kong/kong-build-tools
path: kong-build-tools
ref: master

- name: Checkout go-pluginserver
if: steps.cache-deps.outputs.cache-hit != 'true' || github.event.inputs.force_build == 'true'
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
repository: Kong/go-pluginserver
path: go-pluginserver
Expand Down Expand Up @@ -80,13 +80,13 @@ jobs:
echo "LD_LIBRARY_PATH=$INSTALL_ROOT/openssl/lib:$LD_LIBRARY_PATH" >> $GITHUB_ENV
- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
path: kong
ref: ${{ github.event.inputs.source_branch }}

- name: Checkout Kong Docs
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
repository: kong/docs.konghq.com
path: docs.konghq.com
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3

# these aren't necessarily used by all tests, but building them here will
# ensures that we have a warm cache when other tests _do_ need to build the
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

steps:
- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Lookup build cache
id: cache-deps
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:

steps:
- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Lookup build cache
id: cache-deps
Expand Down Expand Up @@ -269,7 +269,7 @@ jobs:

steps:
- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Lookup build cache
id: cache-deps
Expand Down Expand Up @@ -335,7 +335,7 @@ jobs:

steps:
- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Lookup build cache
id: cache-deps
Expand Down Expand Up @@ -388,7 +388,7 @@ jobs:

steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Install requirements
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildifier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Install Dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/perf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Generate cache key
id: cache-key
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
repo-token: ${{ secrets.PAT }}

- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
# Fetch all history for all tags and branches
fetch-depth: 0
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
arch: ${{ steps.build-info.outputs.arch }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- name: Build Info
id: build-info
run: |
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
apt install -y wget libz-dev libssl-dev libcurl4-gnutls-dev libexpat1-dev sudo
- name: Checkout Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Swap git with https
run: git config --global url."https://github".insteadOf git://github
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
include: "${{ fromJSON(needs.metadata.outputs.matrix)['build-packages'] }}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- name: Download artifact
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
include: "${{ fromJSON(needs.metadata.outputs.matrix)['build-images'] }}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- name: Download artifact
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -409,7 +409,7 @@ jobs:
include: "${{ fromJSON(needs.metadata.outputs.matrix)['build-images'] }}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- name: Install Python
uses: actions/setup-python@v4
Expand Down Expand Up @@ -526,7 +526,7 @@ jobs:
KONG_PROXY_URI: http://localhost:8000

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- name: Login to Docker Hub
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.1.0
Expand Down Expand Up @@ -597,7 +597,7 @@ jobs:
include: "${{ fromJSON(needs.metadata.outputs.matrix)['release-packages'] }}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3

- name: Download artifact
uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
sudo apt-get -y install jq
- name: Clone Kong source code
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down

1 comment on commit 02cd600

@khcp-gha-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:02cd600ae9dab677c47879e9082672008d8bd145
Artifacts available https://github.com/Kong/kong/actions/runs/6258973964

Please sign in to comment.