Skip to content

Commit 78800a8

Browse files
authored
Merge pull request #2181 from OWASP/renovate/major-github-actions
Update actions/checkout action to v5
2 parents 92cf924 + e1991a5 commit 78800a8

21 files changed

+35
-35
lines changed

.github/workflows/challenge13.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
# Steps represent a sequence of tasks that will be executed as part of the job
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
- name: Dump and exfiltrate
1717
shell: bash
1818
env:

.github/workflows/codeclimate_standalone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Run Code Climate
2020
uses: erzz/[email protected]

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

.github/workflows/container-alts-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Test with podman
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
- name: run container
2121
run: |
2222
podman run -dt -p 8080:8080 docker.io/jeroenwillemsen/wrongsecrets:latest-no-vault && \

.github/workflows/container_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
# Steps represent a sequence of tasks that will be executed as part of the job
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Set up JDK 23
2323
uses: actions/setup-java@v4
2424
with:
@@ -36,6 +36,6 @@ jobs:
3636
name: Challenge 51 compose test
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
- name: Run compose and print out service
4141
run: export DOCKER_BUILDKIT=1 && cd src/main/resources/challenges/challenge-51 && docker compose -f challenge51docker-compose.yml build && docker compose -f challenge51docker-compose.yml run myservice

.github/workflows/dast-zap-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: DAST test with ZAP
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up JDK 23
1818
uses: actions/setup-java@v4
1919
with:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
preview-url: ${{ steps.deployment.outputs.page_url }}pr-${{ github.event.number }}/
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
- name: Set up JDK 23
3737
uses: actions/setup-java@v4
@@ -265,7 +265,7 @@ jobs:
265265
pull-requests: write
266266
steps:
267267
- name: Checkout repository
268-
uses: actions/checkout@v4
268+
uses: actions/checkout@v5
269269
with:
270270
fetch-depth: 0
271271

.github/workflows/heroku_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
# Steps represent a sequence of tasks that will be executed as part of the job
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- name: Run Tests
2525
run: |
2626
cd src/test/e2e

.github/workflows/java_swagger_doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
javaDocGenerator:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up JDK 23
1818
uses: actions/setup-java@v4
1919
with:

.github/workflows/link_checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
linkChecker:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Link Checker
2020
id: lychee

0 commit comments

Comments
 (0)