Skip to content

Commit

Permalink
Merge pull request #336 from alexsasharegan/master
Browse files Browse the repository at this point in the history
fix: use node 20.x for github node 16 EOL warnings
  • Loading branch information
nick-fields committed Feb 14, 2024
2 parents 1a3e963 + f4db98d commit f3dcd49
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Pre-requisites
run: .github/scripts/ubuntu-init.sh
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '20.x'
- name: install
run: npm install
- name: lint
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
description: 'The optional path to directory containing action. Useful when multiple private actions are stored in the same repo'
required: false
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'lock'
Expand Down
19 changes: 14 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/commit-analyzer": "^9.0.2",
"@types/jest": "^29.4.0",
"@types/node": "16.11.7",
"@types/node": "20.11.17",
"@typescript-eslint/eslint-plugin": "5.54.1",
"@typescript-eslint/parser": "5.54.1",
"@vercel/ncc": "^0.36.1",
Expand Down

0 comments on commit f3dcd49

Please sign in to comment.