Skip to content

Commit

Permalink
github: bump actions per warning message
Browse files Browse the repository at this point in the history
> Node.js 16 actions are deprecated. Please update the following actions to use
> Node.js 20: actions/checkout@v2, actions/setup-node@v2. For more information
> see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
  • Loading branch information
yuja committed Jun 15, 2024
1 parent 9443847 commit 9b2dfa1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '20'
- name: Install dependencies (gyp would fail)
run: npm install || true
- name: Generate parser sources
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '20'
- name: Install dependencies
run: npm install
- name: Regenerate parser sources
Expand All @@ -26,10 +26,10 @@ jobs:
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '14'
node-version: '20'
- name: Install dependencies
run: npm install
- name: Run tests
Expand Down

0 comments on commit 9b2dfa1

Please sign in to comment.