Skip to content

Commit 63f4f76

Browse files
github-actions: bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3ef1892 commit 63f4f76

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

.github/workflows/activate-stack.yml

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

2929
steps:
3030
- name: Git clone - ${{ github.ref }}
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
with:
3333
ref: ${{ github.ref }}
3434

.github/workflows/daily-build.yml

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

2424
steps:
2525
- name: Git clone - ${{ github.ref }}
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
ref: ${{ github.ref }}
2929

.github/workflows/persistent-environment.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Git clone - ${{ inputs.branch_name }}
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v6
3030
with:
3131
ref: ${{ inputs.branch_name }}
3232

@@ -81,7 +81,7 @@ jobs:
8181

8282
steps:
8383
- name: Git clone - ${{ inputs.branch_name }}
84-
uses: actions/checkout@v4
84+
uses: actions/checkout@v6
8585
with:
8686
ref: ${{ inputs.branch_name }}
8787

@@ -154,7 +154,7 @@ jobs:
154154

155155
steps:
156156
- name: Git clone - ${{ inputs.branch_name }}
157-
uses: actions/checkout@v4
157+
uses: actions/checkout@v6
158158
with:
159159
ref: ${{ inputs.branch_name }}
160160

@@ -230,7 +230,7 @@ jobs:
230230

231231
steps:
232232
- name: Git clone - ${{ inputs.branch_name }}
233-
uses: actions/checkout@v4
233+
uses: actions/checkout@v6
234234
with:
235235
ref: ${{ inputs.branch_name }}
236236

@@ -261,7 +261,7 @@ jobs:
261261

262262
steps:
263263
- name: Git clone - ${{ inputs.branch_name }}
264-
uses: actions/checkout@v4
264+
uses: actions/checkout@v6
265265
with:
266266
ref: ${{ inputs.branch_name }}
267267

@@ -292,7 +292,7 @@ jobs:
292292

293293
steps:
294294
- name: Git clone - ${{ inputs.branch_name }}
295-
uses: actions/checkout@v4
295+
uses: actions/checkout@v6
296296
with:
297297
ref: ${{ inputs.branch_name }}
298298

.github/workflows/pr-env-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
environment: pull-request
5151
steps:
5252
- name: Git Clone - ${{ github.event.pull_request.head.ref }}
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v6
5454
with:
5555
ref: ${{ github.event.pull_request.head.ref }}
5656

@@ -113,7 +113,7 @@ jobs:
113113

114114
steps:
115115
- name: Git Clone - ${{ github.event.pull_request.head.ref }}
116-
uses: actions/checkout@v4
116+
uses: actions/checkout@v6
117117
with:
118118
ref: ${{ github.event.pull_request.head.ref }}
119119

@@ -197,7 +197,7 @@ jobs:
197197

198198
steps:
199199
- name: Git Clone - ${{ github.event.pull_request.head.ref }}
200-
uses: actions/checkout@v4
200+
uses: actions/checkout@v6
201201
with:
202202
ref: ${{ github.event.pull_request.head.ref }}
203203

@@ -234,7 +234,7 @@ jobs:
234234
runs-on: codebuild-nhsd-nrlf-ci-build-project-${{ github.run_id }}-${{ github.run_attempt }}
235235
steps:
236236
- name: Git Clone - ${{ github.event.pull_request.head.ref }}
237-
uses: actions/checkout@v4
237+
uses: actions/checkout@v6
238238
with:
239239
ref: ${{ github.event.pull_request.head.ref }}
240240

@@ -269,7 +269,7 @@ jobs:
269269

270270
steps:
271271
- name: Git Clone - ${{ github.event.pull_request.head.ref }}
272-
uses: actions/checkout@v4
272+
uses: actions/checkout@v6
273273
with:
274274
ref: ${{ github.event.pull_request.head.ref }}
275275

.github/workflows/pr-env-destroy.yml

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

5454
steps:
5555
- name: Git Clone - ${{ github.event.pull_request.head.ref }}
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v6
5757
with:
5858
ref: ${{ github.event.pull_request.merged && github.event.pull_request.base.ref || github.event.pull_request.head.ref }}
5959

.github/workflows/rollback-stack.yml

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

2424
steps:
2525
- name: Git clone - ${{ github.ref }}
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v6
2727
with:
2828
ref: ${{ github.ref }}
2929

.github/workflows/update-lambda-permissions.yml

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

3434
steps:
3535
- name: Git clone - ${{ github.ref }}
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v6
3737
with:
3838
ref: ${{ github.ref }}
3939

@@ -85,7 +85,7 @@ jobs:
8585

8686
steps:
8787
- name: Git clone - ${{ github.ref }}
88-
uses: actions/checkout@v4
88+
uses: actions/checkout@v6
8989
with:
9090
ref: ${{ github.ref }}
9191

@@ -124,7 +124,7 @@ jobs:
124124

125125
steps:
126126
- name: Git clone - ${{ github.ref }}
127-
uses: actions/checkout@v4
127+
uses: actions/checkout@v6
128128
with:
129129
ref: ${{ github.ref }}
130130

@@ -166,7 +166,7 @@ jobs:
166166

167167
steps:
168168
- name: Git clone - ${{ github.ref }}
169-
uses: actions/checkout@v4
169+
uses: actions/checkout@v6
170170
with:
171171
ref: ${{ github.ref }}
172172

@@ -232,7 +232,7 @@ jobs:
232232

233233
steps:
234234
- name: Git clone - ${{ github.ref }}
235-
uses: actions/checkout@v4
235+
uses: actions/checkout@v6
236236
with:
237237
ref: ${{ github.ref }}
238238

0 commit comments

Comments
 (0)