Skip to content

Commit 47812e5

Browse files
dependabot[bot]marcusdacoregio
authored andcommitted
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 89fd30f commit 47812e5

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/continuous-integration-workflow.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runjobs: ${{ steps.continue.outputs.runjobs }}
3232
project_version: ${{ steps.continue.outputs.project_version }}
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
- id: continue
3636
name: Determine if should continue
3737
run: |
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ${{ matrix.os }}
5050
if: needs.prerequisites.outputs.runjobs
5151
steps:
52-
- uses: actions/checkout@v3
52+
- uses: actions/checkout@v4
5353
- name: Set up JDK 11
5454
uses: actions/setup-java@v3
5555
with:
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-latest
7373
if: needs.prerequisites.outputs.runjobs
7474
steps:
75-
- uses: actions/checkout@v3
75+
- uses: actions/checkout@v4
7676
- name: Set up gradle
7777
uses: spring-io/spring-gradle-build-action@v1
7878
with:
@@ -90,7 +90,7 @@ jobs:
9090
runs-on: ubuntu-latest
9191
if: needs.prerequisites.outputs.runjobs
9292
steps:
93-
- uses: actions/checkout@v3
93+
- uses: actions/checkout@v4
9494
- name: Set up gradle
9595
uses: spring-io/spring-gradle-build-action@v1
9696
with:
@@ -114,7 +114,7 @@ jobs:
114114
runs-on: ubuntu-latest
115115
if: needs.prerequisites.outputs.runjobs
116116
steps:
117-
- uses: actions/checkout@v3
117+
- uses: actions/checkout@v4
118118
- name: Set up gradle
119119
uses: spring-io/spring-gradle-build-action@v1
120120
with:
@@ -131,7 +131,7 @@ jobs:
131131
needs: [build_jdk_11, snapshot_tests, check_samples, check_tangles]
132132
runs-on: ubuntu-latest
133133
steps:
134-
- uses: actions/checkout@v3
134+
- uses: actions/checkout@v4
135135
- name: Set up gradle
136136
uses: spring-io/spring-gradle-build-action@v1
137137
with:
@@ -155,7 +155,7 @@ jobs:
155155
needs: [build_jdk_11, snapshot_tests, check_samples, check_tangles]
156156
runs-on: ubuntu-latest
157157
steps:
158-
- uses: actions/checkout@v3
158+
- uses: actions/checkout@v4
159159
- name: Set up gradle
160160
uses: spring-io/spring-gradle-build-action@v1
161161
with:
@@ -176,7 +176,7 @@ jobs:
176176
needs: [build_jdk_11, snapshot_tests, check_samples, check_tangles]
177177
runs-on: ubuntu-latest
178178
steps:
179-
- uses: actions/checkout@v3
179+
- uses: actions/checkout@v4
180180
- name: Set up gradle
181181
uses: spring-io/spring-gradle-build-action@v1
182182
with:
@@ -206,7 +206,7 @@ jobs:
206206
TOKEN: ${{ github.token }}
207207
VERSION: ${{ needs.prerequisites.outputs.project_version }}
208208
steps:
209-
- uses: actions/checkout@v3
209+
- uses: actions/checkout@v4
210210
with:
211211
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
212212
- name: Set up gradle
@@ -287,7 +287,7 @@ jobs:
287287
TOKEN: ${{ github.token }}
288288
VERSION: ${{ needs.prerequisites.outputs.project_version }}
289289
steps:
290-
- uses: actions/checkout@v3
290+
- uses: actions/checkout@v4
291291
- name: Set up gradle
292292
uses: spring-io/spring-gradle-build-action@v1
293293
with:

.github/workflows/deploy-docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
if: github.repository_owner == 'spring-projects'
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
ref: docs-build
2323
fetch-depth: 1

.github/workflows/pr-build-workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
if: ${{ github.repository == 'spring-projects/spring-security' }}
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Set up gradle
2121
uses: spring-io/spring-gradle-build-action@v1
2222
with:

.github/workflows/update-scheduled-release-version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- id: checkout-source
2525
name: Checkout Source Code
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
2929
- name: Set up gradle

0 commit comments

Comments
 (0)