Skip to content

Commit

Permalink
Update action to run on node20
Browse files Browse the repository at this point in the history
Fixes #121.
  • Loading branch information
pkwarren committed Apr 24, 2024
1 parent 4b339b7 commit 90e8a97
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
### 3.1.2 (Next)

* Your contribution here.
* [#123](https://github.com/dblock/create-a-github-issue/pull/123): Update action to run on node20 - [@pkwarren](https://github.com/pkwarren).

### 3.1.1 (2022/10/25)

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Create a GitHub Issue
description: Creates a new GitHub issue using a template.
runs:
using: node16
using: node20
main: dist/index.js
branding:
icon: alert-circle
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"nunjucks-date-filter": "0.1.1"
},
"devDependencies": {
"@tsconfig/node16": "16.1.3",
"@tsconfig/node20": "20.1.4",
"@types/jest": "29.5.12",
"@types/nunjucks": "3.2.6",
"@vercel/ncc": "0.38.1",
Expand All @@ -42,4 +42,4 @@
".+\\.tsx?$": "ts-jest"
}
}
}
}
5 changes: 1 addition & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"esModuleInterop": true
}
"extends": "@tsconfig/node20/tsconfig.json"
}

0 comments on commit 90e8a97

Please sign in to comment.