Skip to content

Commit 4720e1a

Browse files
sjim-fortinetclaudebaltoiteodor
authored
fix: bump to Node 24 to clear Node 20 deprecation warnings (#260)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: Teodor-Ioan Baltoi <teodorioan.baltoi@lacework.net>
1 parent 73133d6 commit 4720e1a

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
- name: Set up Java
25-
uses: actions/setup-java@v3
25+
uses: actions/setup-java@v4
2626
with:
2727
distribution: "temurin"
2828
java-version: "17"

action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,17 @@ runs:
6868
if [ -n "$LW_ACCOUNT_NAME" ]; then
6969
echo "LW_ACCOUNT=$LW_ACCOUNT_NAME" >> $GITHUB_ENV
7070
fi
71-
- uses: actions/setup-node@v4
71+
- uses: actions/setup-node@v6
7272
with:
73-
node-version: 18
73+
node-version: 24
7474
- shell: bash
7575
run: |
7676
rm -rf ../lacework-code-security
7777
cp -r "${{ github.action_path }}" ../lacework-code-security
7878
cd ../lacework-code-security
7979
HUSKY=0 npm install
8080
npm run compile
81-
yq -i -o yaml 'del(.runs.steps) | del(.outputs) | .runs.using="node16" | .runs.main="dist/src/index.js"' action.yaml
81+
yq -i -o yaml 'del(.runs.steps) | del(.outputs) | .runs.using="node24" | .runs.main="dist/src/index.js"' action.yaml
8282
- id: run-analysis
8383
uses: './../lacework-code-security'
8484
with:

0 commit comments

Comments
 (0)