Skip to content

Commit fb8b95e

Browse files
chore: [DevOps] bump actions/checkout from 5 to 6 in the github-actions group (#1020)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8a929df commit fb8b95e

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

.github/workflows/blackduck.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
timeout-minutes: 15
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
- name: "Scan With Black Duck"
1616
uses: ./.github/actions/scan-with-blackduck
1717
with:
@@ -23,7 +23,7 @@ jobs:
2323
if: ${{ failure() && github.ref == 'refs/heads/main' }}
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
- name: Notify
2828
run: python .pipeline/scripts/notify.py
2929
env:

.github/workflows/cache-maven-dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: "Checkout"
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@v6
1919
with:
2020
ref: ${{ env.MAVEN_CACHE_REF }}
2121

.github/workflows/continuous-integration.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
runs-on: ubuntu-latest
8282
steps:
8383
- name: "Checkout Repository"
84-
uses: actions/checkout@v5
84+
uses: actions/checkout@v6
8585
with:
8686
ref: ${{ needs.context.outputs.commit }}
8787

@@ -108,7 +108,7 @@ jobs:
108108
runs-on: ubuntu-latest
109109
steps:
110110
- name: "Checkout repository"
111-
uses: actions/checkout@v5
111+
uses: actions/checkout@v6
112112
with:
113113
ref: ${{ needs.context.outputs.commit }}
114114

@@ -162,7 +162,7 @@ jobs:
162162
runs-on: ubuntu-latest
163163
steps:
164164
- name: "Checkout repository"
165-
uses: actions/checkout@v5
165+
uses: actions/checkout@v6
166166
with:
167167
ref: ${{ needs.context.outputs.commit }}
168168

@@ -223,7 +223,7 @@ jobs:
223223
name: "Run ${{ matrix.task.name }} Analysis"
224224
steps:
225225
- name: "Checkout repository"
226-
uses: actions/checkout@v5
226+
uses: actions/checkout@v6
227227
with:
228228
ref: ${{ needs.context.outputs.commit }}
229229

@@ -264,7 +264,7 @@ jobs:
264264
runs-on: ubuntu-latest
265265
steps:
266266
- name: "Checkout repository"
267-
uses: actions/checkout@v5
267+
uses: actions/checkout@v6
268268
with:
269269
ref: ${{ needs.context.outputs.commit }}
270270

@@ -398,7 +398,7 @@ jobs:
398398
runs-on: ubuntu-latest
399399
steps:
400400
- name: "Checkout repository"
401-
uses: actions/checkout@v5
401+
uses: actions/checkout@v6
402402
with:
403403
ref: ${{ needs.context.outputs.commit }}
404404

@@ -414,7 +414,7 @@ jobs:
414414
runs-on: ubuntu-latest
415415
steps:
416416
- name: "Checkout repository"
417-
uses: actions/checkout@v5
417+
uses: actions/checkout@v6
418418
with:
419419
ref: ${{ needs.context.outputs.commit }}
420420

.github/workflows/dependabot-automerge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
contents: write
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323

2424
- name: Approve and Merge PRs
2525
run: |

.github/workflows/deploy-snapshot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: "Checkout Repository"
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: "Setup java"
1717
uses: actions/setup-java@v5

.github/workflows/fosstars-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
name: "Security rating"
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- uses: SAP/fosstars-rating-core-action@v1.14.0
1414
with:
1515
report-branch: fosstars-report

.github/workflows/javadoc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
git config --global user.name "SAP Cloud SDK Bot"
2626
2727
- name: "Checkout Repository"
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
fetch-depth: 0
3131

@@ -58,7 +58,7 @@ jobs:
5858
run: mvn clean javadoc:aggregate -Drelease -Djava.failOnWarning=false --projects "${PROJECTS}" --quiet
5959

6060
- name: "Checkout Docs Repository"
61-
uses: actions/checkout@v5
61+
uses: actions/checkout@v6
6262
with:
6363
repository: ${{ env.DOCS_REPO }}
6464
path: .cloud-sdk-docs

.github/workflows/perform-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
GH_TOKEN: ${{ github.token }}
5353

5454
- name: "Checkout Repository"
55-
uses: actions/checkout@v5
55+
uses: actions/checkout@v6
5656

5757
- name: "Check Whether Code PR Can Be Merged"
5858
if: ${{ inputs.skip-pr-merge != 'true' }}

.github/workflows/prepare-release.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: "Checkout Repository"
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
ref: ${{ github.event.inputs.branch }}
3737

@@ -84,7 +84,7 @@ jobs:
8484
statuses: write # needed to update the commit status
8585
steps:
8686
- name: "Checkout repository"
87-
uses: actions/checkout@v5
87+
uses: actions/checkout@v6
8888
with:
8989
ref: ${{ needs.bump-version.outputs.release-branch }}
9090

@@ -120,7 +120,7 @@ jobs:
120120
runs-on: ubuntu-latest
121121
steps:
122122
- name: "Checkout repository"
123-
uses: actions/checkout@v5
123+
uses: actions/checkout@v6
124124
with:
125125
ref: ${{ needs.bump-version.outputs.release-branch }}
126126

@@ -163,7 +163,7 @@ jobs:
163163
statuses: write # needed to update the commit status
164164
steps:
165165
- name: "Checkout repository"
166-
uses: actions/checkout@v5
166+
uses: actions/checkout@v6
167167
with:
168168
ref: ${{ needs.create-release.outputs.release-name }}
169169
- name: "Trigger workflow (ignore failures)"
@@ -182,12 +182,12 @@ jobs:
182182
runs-on: ubuntu-latest
183183
steps:
184184
- name: "Checkout Code Repository"
185-
uses: actions/checkout@v5
185+
uses: actions/checkout@v6
186186
with:
187187
ref: ${{ needs.bump-version.outputs.release-branch }}
188188
token: ${{ secrets.BOT_SDK_JS_FOR_DOCS_REPO_PR }}
189189
- name: "Checkout Docs Repository"
190-
uses: actions/checkout@v5
190+
uses: actions/checkout@v6
191191
with:
192192
repository: ${{ env.DOCS_REPO }}
193193
path: .cloud-sdk-docs
@@ -260,7 +260,7 @@ jobs:
260260
runs-on: ubuntu-latest
261261
steps:
262262
- name: "Checkout Repository"
263-
uses: actions/checkout@v5
263+
uses: actions/checkout@v6
264264
with:
265265
ref: ${{ needs.bump-version.outputs.release-branch }}
266266
token: ${{ secrets.BOT_SDK_JS_FOR_DOCS_REPO_PR }} # this is needed so that the same token is used when pushing our changes later. Otherwise, our on: push workflows (i.e. our continuous integration) won't be triggered.
@@ -300,7 +300,7 @@ jobs:
300300
if: ${{ failure() }}
301301
steps:
302302
- name: "Checkout Repository"
303-
uses: actions/checkout@v5
303+
uses: actions/checkout@v6
304304
with:
305305
ref: ${{ github.event.inputs.branch }}
306306

.github/workflows/reuse.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212
test:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: REUSE Compliance Check
1717
uses: fsfe/reuse-action@v6.0.0

0 commit comments

Comments
 (0)