Skip to content

Commit

Permalink
fix: bump node to v20 (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
EndBug committed Jan 25, 2024
1 parent 5e702fd commit 81610ab
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 31 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ inputs:
required: false
committer_name:
description: The name of the custom committer you want to use
required: false
required: false
committer_email:
description: The email of the custom committer you want to use
required: false
Expand Down Expand Up @@ -59,7 +59,7 @@ inputs:
tag_push:
description: Arguments for the git push --tags command (any additional argument will be added after --tags)
required: false

# Input not required from the user
github_token:
description: The token used to make requests to the GitHub API. It's NOT used to make commits and should not be changed.
Expand All @@ -81,7 +81,7 @@ outputs:
description: Whether the action has pushed a tag.

runs:
using: node16
using: node20
main: lib/index.js

branding:
Expand Down
4 changes: 2 additions & 2 deletions lib/index.js

Large diffs are not rendered by default.

33 changes: 26 additions & 7 deletions package-lock.json

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

41 changes: 22 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,6 @@
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/add-and-commit.git"
},
"keywords": [
"github",
"action",
"version",
"npm",
"node"
],
"author": "Federico Grandi <fgrandi30@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EndBug/add-and-commit/issues"
},
"homepage": "https://github.com/EndBug/add-and-commit#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"actions-toolkit": "github:EndBug/actions-toolkit#core-actions",
Expand All @@ -38,7 +21,7 @@
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^12.12.54",
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.0",
"@vercel/ncc": "^0.38.1",
Expand All @@ -49,5 +32,25 @@
"husky": "^8.0.3",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EndBug/add-and-commit.git"
},
"keywords": [
"github",
"action",
"version",
"npm",
"node"
],
"author": "Federico Grandi <fgrandi30@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EndBug/add-and-commit/issues"
},
"homepage": "https://github.com/EndBug/add-and-commit#readme"
}

0 comments on commit 81610ab

Please sign in to comment.