Skip to content

Commit 3b11d9a

Browse files
committed
ci: bump actions/{checkout,upload-artifact} to v6
This solves "Node.js 20 actions are deprecated." message. Signed-off-by: Marcin Niestroj <marcin.niestroj@canonical.com>
1 parent a7c0fea commit 3b11d9a

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/bsim.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-24.04
4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v6
5252
with:
5353
path: pouch-gateway
5454

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-24.04
6363
steps:
6464
- name: Checkout repository
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v6
6666
with:
6767
path: pouch-gateway
6868

@@ -114,7 +114,7 @@ jobs:
114114
echo "ARTIFACT_TARGET=${TARGET//\//-}${SUFFIX}" >> $GITHUB_OUTPUT
115115
116116
- name: Upload Artifacts
117-
uses: actions/upload-artifact@v4
117+
uses: actions/upload-artifact@v6
118118
with:
119119
name: ${{ matrix.app }}-${{ steps.build.outputs.ARTIFACT_TARGET }}
120120
path: |

.github/workflows/coverity.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
container: golioth/golioth-coverity-base:89df175
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
with:
1717
path: pouch-gateway
1818
- name: Init and update west
@@ -46,7 +46,7 @@ jobs:
4646
--form version="0" \
4747
--form description="Description" \
4848
https://scan.coverity.com/builds?project=golioth%2Fpouch-gateway
49-
- uses: actions/upload-artifact@v4
49+
- uses: actions/upload-artifact@v6
5050
with:
5151
name: coverity_output
5252
path: gateway.tgz

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout Repository
15-
uses: actions/checkout@v4
15+
uses: actions/checkout@v6
1616
with:
1717
# Fetch depth must be greater than the number of commits included in the push in order to
1818
# compare against commit prior to merge. 15 is chosen as a reasonable default for the

0 commit comments

Comments
 (0)