Skip to content

Commit

Permalink
chore(cd): bump release workflows to use node20 based actions
Browse files Browse the repository at this point in the history
as node16 is EOL on Nov 2024 on GHA
  • Loading branch information
fffonion committed Jul 8, 2024
1 parent 720240b commit ab86ce2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
commit-sha: ${{ github.event.pull_request.head.sha || github.sha }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Info
id: build-info
run: |
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
- name: Cache Git
id: cache-git
if: (matrix.package == 'rpm') && matrix.image != ''
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3, DO NOT BUMP, v4 BREAKS ON CENTOS7 OR AMAZONLINUX2
uses: actions/cache@v4
with:
path: /usr/local/git
key: ${{ matrix.label }}-git-2.41.0
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
echo "/usr/local/git/bin" >> $GITHUB_PATH
- name: Checkout Kong source code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Swap git with https
run: git config --global url."https://github".insteadOf git://github
Expand All @@ -179,7 +179,7 @@ jobs:
- name: Cache Packages
id: cache-deps
if: env.GHA_CACHE == 'true'
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3, DO NOT BUMP, v4 BREAKS ON CENTOS7 OR AMAZONLINUX2
uses: actions/cache@v4
with:
path: bazel-bin/pkg
key: ${{ steps.cache-key.outputs.cache-key }}
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
sudo dmesg || true
tail -n500 bazel-out/**/*/CMake.log || true
- name: Upload artifact
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.label }}-packages
Expand All @@ -273,7 +273,7 @@ jobs:
include: "${{ fromJSON(needs.metadata.outputs.matrix)['build-packages'] }}"

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

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

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

- name: Download artifact
uses: actions/download-artifact@v3
Expand Down

0 comments on commit ab86ce2

Please sign in to comment.