From 2d94b5cff170204adf9b81c989bc36ae118c4449 Mon Sep 17 00:00:00 2001 From: Or Rubin Date: Thu, 19 Dec 2024 18:01:09 +0200 Subject: [PATCH] chore: upgrade Node.js runtime to v20 - Updated all actions to use node20 instead of node16 - Updated GitHub Actions workflow to use Node.js 20 - Rebuilt all actions to verify compatibility --- .github/workflows/build-test-release.yml | 4 ++-- run-scan/action.yml | 2 +- stop-scan/action.yml | 2 +- wait-for/action.yml | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index b881cf8..94eaeed 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -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 @@ -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 diff --git a/run-scan/action.yml b/run-scan/action.yml index f4cedb8..093afe7 100644 --- a/run-scan/action.yml +++ b/run-scan/action.yml @@ -51,5 +51,5 @@ outputs: id: description: 'Scan ID' runs: - using: 'node16' + using: 'node20' main: 'dist/index.js' diff --git a/stop-scan/action.yml b/stop-scan/action.yml index 50646d4..a3fac5c 100644 --- a/stop-scan/action.yml +++ b/stop-scan/action.yml @@ -14,5 +14,5 @@ inputs: description: 'Hostname. Default is app.brightsec.com' required: false runs: - using: 'node16' + using: 'node20' main: 'dist/index.js' diff --git a/wait-for/action.yml b/wait-for/action.yml index d784b7c..de2fb42 100644 --- a/wait-for/action.yml +++ b/wait-for/action.yml @@ -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 @@ -45,5 +45,5 @@ outputs: url: description: 'Url of the resulting scan' runs: - using: 'node16' + using: 'node20' main: 'dist/index.js'