Skip to content

Commit 607b246

Browse files
authored
fix: bump runtime node version (#643)
Update to run using node24. Close #641.
1 parent 5f2f9da commit 607b246

3 files changed

Lines changed: 30 additions & 2 deletions

File tree

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,34 @@ steps:
111111
| Specific version (e.g. `120.0.6099`) | ✅ | ✅ | ✅ | ✅ | ❌ |
112112
| Latest snapshot | ✅ | ✅ | ✅ | ✅ | ✅ |
113113

114+
## Contributing
115+
116+
### Local development
117+
118+
```bash
119+
# Instal dependencies
120+
pnpm install
121+
122+
# Run tests
123+
pnpm lint
124+
pnpm test
125+
126+
# Build and create package in dist/
127+
pnpm build
128+
pnpm package
129+
```
130+
131+
## Release
132+
133+
Releases are automated with Release Please. All changes must follow [Conventional Commits][], since Release Please derives versions and changelog entries from commit messages.
134+
135+
1. Merge some changes to the main branch.
136+
2. Release Please opens or updates a release PR with version bumps and changelog updates.
137+
3. Squash and merge the release PR to the main branch with a commit message that follows [Conventional Commits][].
138+
4. Create a GitHub release and publish the action to the marketplace.
139+
140+
[Conventional Commits]: https://www.conventionalcommits.org/en/v1.0.0/
141+
114142
## License
115143

116144
[MIT](LICENSE)

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ outputs:
2929
chromedriver-path:
3030
description: 'The installed ChromeDriver path.'
3131
runs:
32-
using: 'node20'
32+
using: 'node24'
3333
main: 'index.js'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "dist/index.js",
66
"packageManager": "[email protected]",
77
"engines": {
8-
"node": "20.6.1"
8+
"node": ">=24.0.0"
99
},
1010
"dependencies": {
1111
"@actions/core": "^1.10.1",

0 commit comments

Comments
 (0)