Skip to content

Commit

Permalink
fix: Node.js 16 deprecation warning (#173)
Browse files Browse the repository at this point in the history
* fix: Node.js 16 deprecation warning

* Update .gitignore

---------

Co-authored-by: Forest Anderson <forestkzanderson@gmail.com>
  • Loading branch information
devCrossNet and AngelOnFira committed Feb 21, 2024
1 parent 44bf397 commit ace6d4f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set Node.js 16.x
uses: actions/setup-node@v3.8.1
- name: Set Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 20.x

- name: Install dependencies
run: |
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: 'Sort the keys alphabetically'
default: 'false'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@actions/core": "^1.10.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.0",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.8.7",
"@typescript-eslint/parser": "^5.59.2",
"@vercel/ncc": "^0.36.1",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node16/tsconfig.json",
"extends": "@tsconfig/node20/tsconfig.json",
"compilerOptions": {
"outDir": "./lib", /* Redirect output structure to the directory. */
"rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
Expand Down
10 changes: 5 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -178,10 +178,10 @@ __metadata:
languageName: node
linkType: hard

"@tsconfig/node16@npm:^16.1.0":
version: 16.1.0
resolution: "@tsconfig/node16@npm:16.1.0"
checksum: a0a176492e3802a5340eda1e61eabc8d4767e46496bc080ce9c381993ce8c5fb3df8f65267c3a9af4335bc00a85028845f795ea27545f63d62b93ab6675cf8fa
"@tsconfig/node20@npm:^20.1.2":
version: 20.1.2
resolution: "@tsconfig/node20@npm:20.1.2"
checksum: fc126e15f0817bd328c15bd6be7972f01ef4d55ceb493c7a83ccb9dd545e39f218711f330e3df4072b116b11180c07943da2b2bfcd7adc58414cb586db52a4c8
languageName: node
linkType: hard

Expand Down Expand Up @@ -722,7 +722,7 @@ __metadata:
resolution: "create-envfile@workspace:."
dependencies:
"@actions/core": ^1.10.0
"@tsconfig/node16": ^16.1.0
"@tsconfig/node20": ^20.1.2
"@types/node": ^20.8.7
"@typescript-eslint/parser": ^5.59.2
"@vercel/ncc": ^0.36.1
Expand Down

0 comments on commit ace6d4f

Please sign in to comment.