Skip to content

Commit

Permalink
ci: use actions/checkout@v4
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
rimrul committed Nov 3, 2023
1 parent 6c1da7d commit 3e2be6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Publish GitHub Release from tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.PUSH_RELEASE_TRAINS_PAT }}
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: npm ci
- run: npm run lint
- run: npm run test
Expand Down

0 comments on commit 3e2be6f

Please sign in to comment.