Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ jobs:
- macos-latest
- windows-latest
node-version:
- "16"
- "18"
- "20"
- "22"
- "24"
Expand Down Expand Up @@ -76,7 +74,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v5
with:
node-version: "20"
node-version: "24"
cache: npm

- name: Install development dependencies
Expand Down Expand Up @@ -109,8 +107,6 @@ jobs:
fail-fast: false
matrix:
node-version:
- "16"
- "18"
- "20"
- "22"
- "24"
Expand Down Expand Up @@ -243,7 +239,7 @@ jobs:
- name: Install Node.js
uses: actions/setup-node@v5
with:
node-version: "20"
node-version: "24"

- name: Download publish artifact
uses: actions/download-artifact@v5
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributions, enhancements, and bug-fixes are welcome! [Open an issue](https://

## Building Locally

You should be using Node.js v16 or later to build this project locally
You should be using Node.js v24 or later to build this project locally

```shell
# Clone this repository
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,5 @@ outputs:
If not configured for a scoped package, will be "default".

runs:
using: node20
using: node24
main: action.js
79 changes: 32 additions & 47 deletions dist/main.js

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

4 changes: 2 additions & 2 deletions dist/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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 @@ -37,15 +37,15 @@
"lint": "npm run _eslint && npm run _prettier -- --check",
"format": "npm run _eslint -- --fix && npm run _prettier -- --write",
"build": "concurrently -g npm:build:*",
"build:dist": "esbuild src/action/main.ts --bundle --sourcemap --outdir=dist --platform=node --target=node16",
"build:dist": "esbuild src/action/main.ts --bundle --sourcemap --outdir=dist --platform=node --target=node20",
"build:lib": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"_eslint": "eslint \"**/*.@(js|ts)\"",
"_prettier": "prettier \"**/*.@(js|ts|json|md|yaml)\""
},
"engines": {
"node": ">=16"
"node": ">=20"
},
"publishConfig": {
"access": "public",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
// target Node v16 / ES2021
"target": "es2021",
// target Node v20 / ES2023
"target": "es2023",
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
Expand Down
Loading