Skip to content

Commit f3dcd49

Browse files
authored
Merge pull request #336 from alexsasharegan/master
fix: use node 20.x for github node 16 EOL warnings
2 parents 1a3e963 + f4db98d commit f3dcd49

File tree

4 files changed

+19
-10
lines changed

4 files changed

+19
-10
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
test:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 1
1515
- name: Install Pre-requisites
1616
run: .github/scripts/ubuntu-init.sh
1717
- name: Setup Node
18-
uses: actions/setup-node@v3
18+
uses: actions/setup-node@v4
1919
with:
20-
node-version: '16.x'
20+
node-version: '20.x'
2121
- name: install
2222
run: npm install
2323
- name: lint

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ inputs:
1111
description: 'The optional path to directory containing action. Useful when multiple private actions are stored in the same repo'
1212
required: false
1313
runs:
14-
using: 'node16'
14+
using: 'node20'
1515
main: 'dist/index.js'
1616
branding:
1717
icon: 'lock'

package-lock.json

Lines changed: 14 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@commitlint/config-conventional": "^17.4.4",
3636
"@semantic-release/commit-analyzer": "^9.0.2",
3737
"@types/jest": "^29.4.0",
38-
"@types/node": "16.11.7",
38+
"@types/node": "20.11.17",
3939
"@typescript-eslint/eslint-plugin": "5.54.1",
4040
"@typescript-eslint/parser": "5.54.1",
4141
"@vercel/ncc": "^0.36.1",

0 commit comments

Comments
 (0)