Skip to content

Commit

Permalink
feat: update the action's node.js version to v16, as GitHub Actions w…
Browse files Browse the repository at this point in the history
…ill no longer support v12
  • Loading branch information
danielmarcano committed Oct 18, 2023
1 parent 8302d4d commit dad14f8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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: [16.x, 17.x, 18.x, 19.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 16+
### 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: 'node16'
main: 'dist/index.js'
4 changes: 2 additions & 2 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
@@ -1,6 +1,6 @@
{
"name": "action-pr-title",
"version": "1.0.0",
"version": "1.1.0",
"description": "GitHub action to validate PR titles meet our guidelines",
"main": "lib/index.js",
"scripts": {
Expand Down

0 comments on commit dad14f8

Please sign in to comment.