Skip to content

Commit

Permalink
chore: upgrade Node.js runtime to v20
Browse files Browse the repository at this point in the history
- Updated all actions to use node20 instead of node16
- Updated GitHub Actions workflow to use Node.js 20
- Rebuilt all actions to verify compatibility
  • Loading branch information
orubin committed Dec 19, 2024
1 parent c814bf4 commit 2d94b5c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '20'
cache: 'npm'

- name: Install root dependencies
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '20'

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion run-scan/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ outputs:
id:
description: 'Scan ID'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
2 changes: 1 addition & 1 deletion stop-scan/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ inputs:
description: 'Hostname. Default is app.brightsec.com'
required: false
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
6 changes: 3 additions & 3 deletions wait-for/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: NeuraLegion Wait for Issues
description: 'Run a NeuraLegion scan right in GitHub Action'
name: Bright Security Wait for Issues
description: 'Wait for found vulnerabilities right inside a GitHub Action'
branding:
icon: clock
color: blue
Expand Down Expand Up @@ -45,5 +45,5 @@ outputs:
url:
description: 'Url of the resulting scan'
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'

0 comments on commit 2d94b5c

Please sign in to comment.