Skip to content

Commit

Permalink
[Feature] Update action to use node 20 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmarcano authored Oct 24, 2023
1 parent 8302d4d commit d740eb9
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [20.x]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
### Requirements:
* NodeJS 12+
* NodeJS 20+
### Setup
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ branding:
color: 'blue'

runs:
using: 'node12'
using: 'node20'
main: 'dist/index.js'
40 changes: 29 additions & 11 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
@@ -1,6 +1,6 @@
{
"name": "action-pr-title",
"version": "1.0.0",
"version": "2.0.0",
"description": "GitHub action to validate PR titles meet our guidelines",
"main": "lib/index.js",
"scripts": {
Expand All @@ -21,7 +21,7 @@
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/node": "^12",
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vercel/ncc": "^0.27.0",
Expand Down

0 comments on commit d740eb9

Please sign in to comment.