Skip to content

Commit 62849a4

Browse files
build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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 d21d3ca commit 62849a4

20 files changed

+55
-55
lines changed

.github/workflows/build-docker-artifacts-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ jobs:
4646

4747
steps:
4848
- name: Checkout repository (must be run in infrastructure-k8s)
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
with:
5151
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
5252

5353
- name: Checkout github-workflows repository
54-
uses: actions/checkout@v5
54+
uses: actions/checkout@v6
5555
with:
5656
repository: datavisyn/github-workflows
5757
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-docker-artifacts-trigger-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747
with:
4848
ref: ${{ inputs.branch || github.sha }}
4949
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
5050

5151
- name: Checkout github-workflows repository
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353
with:
5454
repository: datavisyn/github-workflows
5555
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-docker-artifacts.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ jobs:
6464
runs-on: "ubuntu-22.04"
6565
steps:
6666
- name: Checkout repository
67-
uses: actions/checkout@v5
67+
uses: actions/checkout@v6
6868
with:
6969
ref: ${{ inputs.branch || github.sha }}
7070
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
7171

7272
- name: Checkout github-workflows repository
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
with:
7575
repository: datavisyn/github-workflows
7676
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -183,15 +183,15 @@ jobs:
183183
sudo rm -rf /opt/ghc
184184
# TODO: Support arbitrary repositories, not just the current one?
185185
- name: Checkout repository
186-
uses: actions/checkout@v5
186+
uses: actions/checkout@v6
187187
with:
188188
ref: ${{ inputs.branch || github.sha }}
189189
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
190190
# This is required such that yarn install can access private repositories, i.e. visyn_pro
191191
# https://github.com/yarnpkg/yarn/issues/2614#issuecomment-2148174789
192192
persist-credentials: false
193193
- name: Checkout github-workflows repository
194-
uses: actions/checkout@v5
194+
uses: actions/checkout@v6
195195
with:
196196
repository: datavisyn/github-workflows
197197
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -324,7 +324,7 @@ jobs:
324324
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
325325
steps:
326326
- name: Checkout repository
327-
uses: actions/checkout@v5
327+
uses: actions/checkout@v6
328328
with:
329329
ref: ${{ inputs.branch || github.sha }}
330330
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
@@ -400,13 +400,13 @@ jobs:
400400
runs-on: "ubuntu-22.04"
401401
steps:
402402
- name: Checkout repository
403-
uses: actions/checkout@v5
403+
uses: actions/checkout@v6
404404
with:
405405
ref: ${{ inputs.branch || github.sha }}
406406
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
407407

408408
- name: Checkout github-workflows repository
409-
uses: actions/checkout@v5
409+
uses: actions/checkout@v6
410410
with:
411411
repository: datavisyn/github-workflows
412412
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-node-python.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,13 @@ jobs:
142142
runs-on: ${{ vars.BUILD_RUNS_ON_OVERRIDE || vars.RUNS_ON_OVERRIDE || inputs.runs_on || 'ubuntu-22.04' }}
143143
steps:
144144
- name: Checkout source repository
145-
uses: actions/checkout@v5
145+
uses: actions/checkout@v6
146146
with:
147147
ref: ${{ inputs.branch || github.sha }}
148148
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
149149
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
150150
- name: Checkout github-workflows
151-
uses: actions/checkout@v5
151+
uses: actions/checkout@v6
152152
with:
153153
repository: datavisyn/github-workflows
154154
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -187,12 +187,12 @@ jobs:
187187
runs-on: ${{ vars.BUILD_RUNS_ON_OVERRIDE || vars.RUNS_ON_OVERRIDE || inputs.runs_on || 'ubuntu-22.04' }}
188188
steps:
189189
- name: Checkout source repository
190-
uses: actions/checkout@v5
190+
uses: actions/checkout@v6
191191
with:
192192
ref: ${{ inputs.branch || github.sha }}
193193
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
194194
- name: Checkout github-workflows
195-
uses: actions/checkout@v5
195+
uses: actions/checkout@v6
196196
with:
197197
repository: datavisyn/github-workflows
198198
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -281,13 +281,13 @@ jobs:
281281
echo "REDIS_PORT=${{ job.services.redis.ports['6379'] }}"
282282
} >> "$GITHUB_ENV"
283283
- name: Checkout source repository
284-
uses: actions/checkout@v5
284+
uses: actions/checkout@v6
285285
with:
286286
ref: ${{ inputs.branch || github.sha }}
287287
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
288288
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
289289
- name: Checkout github-workflows
290-
uses: actions/checkout@v5
290+
uses: actions/checkout@v6
291291
with:
292292
repository: datavisyn/github-workflows
293293
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -426,13 +426,13 @@ jobs:
426426
echo "REDIS_PORT=${{ job.services.redis.ports['6379'] }}"
427427
} >> "$GITHUB_ENV"
428428
- name: Checkout source repository
429-
uses: actions/checkout@v5
429+
uses: actions/checkout@v6
430430
with:
431431
ref: ${{ inputs.branch || github.sha }}
432432
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
433433
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
434434
- name: Checkout github-workflows
435-
uses: actions/checkout@v5
435+
uses: actions/checkout@v6
436436
with:
437437
repository: datavisyn/github-workflows
438438
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
runs-on: ${{ vars.BUILD_RUNS_ON_OVERRIDE || vars.RUNS_ON_OVERRIDE || inputs.runs_on || 'ubuntu-22.04' }}
6363
steps:
6464
- name: Checkout source repository
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666
with:
6767
ref: ${{ inputs.branch }}
6868
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
6969
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
7070
- name: Checkout github-workflows
71-
uses: actions/checkout@v5
71+
uses: actions/checkout@v6
7272
with:
7373
repository: datavisyn/github-workflows
7474
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-product.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ jobs:
6262
runs-on: ubuntu-22.04
6363
steps:
6464
# checkout specific repository
65-
- uses: actions/checkout@v5
65+
- uses: actions/checkout@v6
6666
# checkout this workflow repository to get actions
67-
- uses: actions/checkout@v5
67+
- uses: actions/checkout@v6
6868
with:
6969
repository: datavisyn/github-workflows
7070
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -124,7 +124,7 @@ jobs:
124124
if: ${{ always() && (needs.build-single.result == 'success' || needs.build-single.result == 'skipped') && (needs.build-workspace.result == 'success' || needs.build-workspace.result == 'skipped') && !(needs.build-workspace.result == 'skipped' && needs.build-single.result == 'skipped')}}
125125
runs-on: ubuntu-22.04
126126
steps:
127-
- uses: actions/checkout@v5
127+
- uses: actions/checkout@v6
128128
with:
129129
repository: datavisyn/github-workflows
130130
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-push-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
runs-on: ubuntu-22.04
3939
steps:
4040
# checkout specific source repository
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
# checkout this workflow repository to get actions
43-
- uses: actions/checkout@v5
43+
- uses: actions/checkout@v6
4444
with:
4545
repository: datavisyn/github-workflows
4646
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-push-helm-chart.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
runs-on: ubuntu-22.04
3737
steps:
3838
# checkout specific source repository
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
# checkout this workflow repository to get actions
41-
- uses: actions/checkout@v5
41+
- uses: actions/checkout@v6
4242
with:
4343
repository: datavisyn/github-workflows
4444
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ jobs:
5050
runs-on: ${{ vars.BUILD_RUNS_ON_OVERRIDE || vars.RUNS_ON_OVERRIDE || inputs.runs_on || 'ubuntu-22.04' }}
5151
steps:
5252
- name: Checkout source repository
53-
uses: actions/checkout@v5
53+
uses: actions/checkout@v6
5454
with:
5555
ref: ${{ inputs.branch }}
5656
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
5757
- name: Checkout github-workflows
58-
uses: actions/checkout@v5
58+
uses: actions/checkout@v6
5959
with:
6060
repository: datavisyn/github-workflows
6161
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-single-product-part.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ jobs:
7474
sudo rm -rf /usr/local/lib/android
7575
sudo rm -rf /opt/ghc
7676
# checkout specific repository
77-
- uses: actions/checkout@v5
77+
- uses: actions/checkout@v6
7878
with:
7979
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
8080
# checkout this workflow repository to get actions
81-
- uses: actions/checkout@v5
81+
- uses: actions/checkout@v6
8282
with:
8383
repository: datavisyn/github-workflows
8484
ref: ${{ env.WORKFLOW_BRANCH }}

0 commit comments

Comments
 (0)