Skip to content

Commit 6245971

Browse files
authored
Merge pull request #2276 from OWASP/renovate/major-github-actions
chore(deps): update github actions (major)
2 parents c0677a7 + 7dce620 commit 6245971

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/github-pages-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
uses: actions/deploy-pages@v4
221221

222222
- name: Comment PR with preview link
223-
uses: actions/github-script@v7
223+
uses: actions/github-script@v8
224224
with:
225225
script: |
226226
const prNumber = context.issue.number;
@@ -328,7 +328,7 @@ jobs:
328328
uses: actions/deploy-pages@v4
329329

330330
- name: Comment PR cleanup completion
331-
uses: actions/github-script@v7
331+
uses: actions/github-script@v8
332332
with:
333333
script: |
334334
const comment = `🧹 **Preview Cleanup Complete**

.github/workflows/pr-preview.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
# }'
160160

161161
- name: Comment PR with build info
162-
uses: actions/github-script@v7
162+
uses: actions/github-script@v8
163163
with:
164164
script: |
165165
const prNumber = context.issue.number;
@@ -333,7 +333,7 @@ jobs:
333333
done
334334
335335
- name: Setup Node.js
336-
uses: actions/setup-node@v4
336+
uses: actions/setup-node@v5
337337
with:
338338
node-version: '24'
339339

@@ -404,7 +404,7 @@ jobs:
404404
retention-days: 30
405405

406406
- name: Comment with visual diff
407-
uses: actions/github-script@v7
407+
uses: actions/github-script@v8
408408
with:
409409
script: |
410410
const comment = `📸 **Visual Diff Ready!**

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
- name: Checkout git repository
2121
uses: actions/checkout@v5
2222
- name: Setup python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: "3.13"
2626
- name: Format python code with black
2727
uses: psf/black@stable
28-
- uses: actions/setup-node@v4
28+
- uses: actions/setup-node@v5
2929
with:
3030
node-version: 24
3131
cache: "npm"

.github/workflows/scanner-comparison.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
uses: actions/checkout@v5
9292

9393
- name: Set up Python
94-
uses: actions/setup-python@v5
94+
uses: actions/setup-python@v6
9595
with:
9696
python-version: '3.13'
9797

@@ -161,7 +161,7 @@ jobs:
161161
uses: actions/checkout@v5
162162

163163
- name: Set up Python
164-
uses: actions/setup-python@v5
164+
uses: actions/setup-python@v6
165165
with:
166166
python-version: '3.13'
167167

@@ -196,7 +196,7 @@ jobs:
196196
uses: actions/checkout@v5
197197

198198
- name: Set up Python
199-
uses: actions/setup-python@v5
199+
uses: actions/setup-python@v6
200200
with:
201201
python-version: '3.13'
202202

@@ -237,7 +237,7 @@ jobs:
237237
uses: actions/checkout@v5
238238

239239
- name: Set up Python
240-
uses: actions/setup-python@v5
240+
uses: actions/setup-python@v6
241241
with:
242242
python-version: '3.13'
243243

.github/workflows/version-sync-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
3131
- name: Comment on PR if versions are out of sync
3232
if: failure() && github.event_name == 'pull_request'
33-
uses: actions/github-script@v7
33+
uses: actions/github-script@v8
3434
with:
3535
script: |
3636
const comment = `🚨 **Version Sync Issue Detected**

.github/workflows/visual-diff.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
timeout 60 bash -c 'until curl -f http://localhost:8081/actuator/health 2>/dev/null; do sleep 2; done' || echo "Main version health check failed"
106106
107107
- name: Setup Node.js
108-
uses: actions/setup-node@v4
108+
uses: actions/setup-node@v5
109109
with:
110110
node-version: '24'
111111

@@ -164,7 +164,7 @@ jobs:
164164
path: screenshots/
165165

166166
- name: Comment with visual diff
167-
uses: actions/github-script@v7
167+
uses: actions/github-script@v8
168168
with:
169169
script: |
170170
const comment = `📸 **Visual Diff Available!**

0 commit comments

Comments
 (0)