Skip to content

Commit

Permalink
fix: upgrade to node20 and checkout and setup-node actions to v4 (#8)
Browse files Browse the repository at this point in the history
Node 16 is deprecated and we need to upgrade to Node 20.

Closes #7
  • Loading branch information
anastasialanz authored Aug 14, 2024
1 parent 6c45f08 commit 9d19375
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,21 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 20
cache: yarn
- run: yarn
- run: yarn lint
generate_report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
product-name: Test
- uses: peter-evans/create-pull-request@v4
- uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "docs: Generate a VPAT"
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ inputs:
description: Additional labels to filter issues by
default: ""
runs:
using: node16
using: node20
main: dist/index.js

0 comments on commit 9d19375

Please sign in to comment.