Thanks to visit codestin.com
Credit goes to github.com

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
2 changes: 1 addition & 1 deletion .github/workflows/basic-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: Setup Yarn
run: corepack enable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: Setup Yarn
run: corepack enable
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/check-licensed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: Setup Yarn
run: corepack enable
Expand All @@ -42,4 +42,5 @@ jobs:
sudo mv licensed /usr/local/bin/licensed

- name: Check cached dependency records
run: licensed status
run: licensed status

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.18.0
v24.7.0
7 changes: 3 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ We have prepared a short guide so that the process of making your contribution i
Before you start, ensure that you have the necessary dependencies for developing and building the action. Without the required dependencies, building or testing the action locally will fail.

- [node](https://nodejs.org/en): JavaScript runtime environment used for the GitHub action development
- Recommended version ">=20.18"
- Download and install from https://nodejs.org/en/download
- Recommended version ">=24"
- Download and install from <https://nodejs.org/en/download>
- Alternative: install and manage node versions with [`nvm`](https://github.com/nvm-sh/nvm)
- [yarn](https://yarnpkg.com):
- Recommended version: "Classic Stable: v1.22.22"
- Install and manage yarn through Corepack (requires node > "v16.9.x0")
- `corepack enable yarn` ([Reference](https://github.com/nodejs/corepack#corepack-enable--name))
- Alternative: install from [classic.yarnpkg.com](https://classic.yarnpkg.com/en/docs/install)
- [licensed](https://github.com/github/licensed): Used to check licenses of open source dependencies.
- Installation guide at https://github.com/github/licensed
- Installation guide at <https://github.com/github/licensed>

## Development and Testing

Expand Down Expand Up @@ -65,4 +65,3 @@ The source code and supporting resources for the action are laid out with the fo
- `yarn run format:fix`: This applies recommended fixes for linting issues from ESlint.
- `yarn run package`: This packages the action source code and dependency code together under `dist/`
- `yarn test`: This runs the unit test suites defined with [Jest](https://jestjs.io)

2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,5 +199,5 @@ inputs:
"Do not store or display the source code related to a finding."
default: false
runs:
using: "node20"
using: "node24"
main: "dist/index.js"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"typescript": "4.9.5"
},
"engines": {
"node": ">=20.18.0",
"node": ">=24",
"npm": "Please use yarn instead of npm to install dependencies",
"yarn": "1.22.22"
},
Expand Down