Skip to content

Commit 3e2be6f

Browse files
committed
ci: use actions/checkout@v4
now that the rss-to-issues action uses node 20, it's time to update the actions we use for our CI jobs, to also use node 20. actions/checkout@v2 in verify-dist.yml was so old that GitHub was forcing it to run under node 16 insted of node 12 which it was designed to run under. actions/github-script does not support node 20 yet, though. [1] [1] actions/github-script#421 Signed-off-by: Matthias Aßhauer <mha1993@live.de>
1 parent 6c1da7d commit 3e2be6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Publish GitHub Release from tag
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
token: ${{ secrets.PUSH_RELEASE_TRAINS_PAT }}
1919
fetch-depth: 0

.github/workflows/verify-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
- run: npm ci
1616
- run: npm run lint
1717
- run: npm run test

0 commit comments

Comments
 (0)