Skip to content

Commit

Permalink
feat: update action runner to use NodeJS 20 (#90)
Browse files Browse the repository at this point in the history
* feat: update action to use NodeJS 20

* fix: bump major version as recommended by github

* fix: revert package version
  • Loading branch information
ahanoff authored Feb 7, 2024
1 parent dabe112 commit 6669b85
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
node-version:
- 18.x
- 20.x

steps:
- name: Checkout Repository
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ outputs:
version:
description: "The Packer version that was installed and added to PATH."
runs:
using: "node16"
using: "node20"
main: "dist/index.js"
branding:
icon: "package"
Expand Down
36 changes: 27 additions & 9 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 @@ -26,7 +26,7 @@
"@vercel/ncc": "0.36.1"
},
"devDependencies": {
"@types/node": "18.14.1",
"@types/node": "^20.11.10",
"@types/semver": "7.5.4",
"prettier": "2.8.4",
"typescript": "4.9.5"
Expand Down

0 comments on commit 6669b85

Please sign in to comment.