Skip to content

Commit d22001e

Browse files
authored
Merge pull request #148 from advanced-security/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 33236d8 + 112e581 commit d22001e

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/blank.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Steps represent a sequence of tasks that will be executed as part of the job
1818
steps:
1919
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
# Runs a set of commands using the runners shell
2323
- name: Run a multi-line script

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
# Check out current repository
3636
- name: Fetch Sources
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838

3939
# Validate wrapper
4040
- name: Gradle Wrapper Validation
@@ -102,7 +102,7 @@ jobs:
102102

103103
# Check out current repository
104104
- name: Fetch Sources
105-
uses: actions/checkout@v4
105+
uses: actions/checkout@v5
106106

107107
# Set up Java environment for the next steps
108108
- name: Setup Java
@@ -155,7 +155,7 @@ jobs:
155155

156156
# Check out current repository
157157
- name: Fetch Sources
158-
uses: actions/checkout@v4
158+
uses: actions/checkout@v5
159159

160160
# Set up Java environment for the next steps
161161
- name: Setup Java
@@ -186,7 +186,7 @@ jobs:
186186

187187
# Check out current repository
188188
- name: Fetch Sources
189-
uses: actions/checkout@v4
189+
uses: actions/checkout@v5
190190

191191
# Set up Java environment for the next steps
192192
- name: Setup Java
@@ -233,7 +233,7 @@ jobs:
233233

234234
# Check out current repository
235235
- name: Fetch Sources
236-
uses: actions/checkout@v4
236+
uses: actions/checkout@v5
237237

238238
# Set up Java environment for the next steps
239239
- name: Setup Java

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
5656
steps:
5757
- name: Checkout repository
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v5
5959

6060
# Initializes the CodeQL tools for scanning.
6161
- name: Initialize CodeQL

.github/workflows/release.yml

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

2121
# Check out current repository
2222
- name: Fetch Sources
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424
with:
2525
ref: ${{ github.event.release.tag_name }}
2626

.github/workflows/run-ui-tests.yml

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

3434
# Check out current repository
3535
- name: Fetch Sources
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737

3838
# Set up Java environment for the next steps
3939
- name: Setup Java

0 commit comments

Comments
 (0)