Skip to content

Commit

Permalink
Upgrade to use node 16 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
adangel committed Jul 10, 2022
1 parent 1d4eca0 commit eba3c46
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
git config --local user.name "GitHub Actions (pmd-bot)"
git add CHANGELOG.md && git commit -m 'Updated CHANGELOG.md' && git push origin main
- name: Set Node.js 12.x
- name: Setup Node.js
uses: actions/setup-node@v3.3.0
with:
node-version: 12.x
node-version: 16

- name: Install dependencies
run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set Node.js 12.x
- name: Setup Node.js
uses: actions/setup-node@v3.3.0
with:
node-version: 12.x
node-version: 16
- run: npm ci
- run: npm test
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ outputs:
violations:
description: Number of violations found
runs:
using: node12
using: node16
main: dist/index.js
branding:
icon: code
Expand Down

0 comments on commit eba3c46

Please sign in to comment.