Skip to content

Commit 8e140a5

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

20 files changed

+54
-54
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@v4
49+
uses: actions/checkout@v5
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@v4
54+
uses: actions/checkout@v5
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
@@ -45,13 +45,13 @@ jobs:
4545

4646
steps:
4747
- name: Checkout repository
48-
uses: actions/checkout@v4
48+
uses: actions/checkout@v5
4949
with:
5050
ref: ${{ inputs.branch }}
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@v4
54+
uses: actions/checkout@v5
5555
with:
5656
repository: datavisyn/github-workflows
5757
ref: ${{ env.WORKFLOW_BRANCH }}

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ jobs:
6363
runs-on: 'ubuntu-22.04'
6464
steps:
6565
- name: Checkout repository
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v5
6767
with:
6868
ref: ${{ inputs.branch }}
6969
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
7070

7171
- name: Checkout github-workflows repository
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v5
7373
with:
7474
repository: datavisyn/github-workflows
7575
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -159,15 +159,15 @@ jobs:
159159
sudo rm -rf /opt/ghc
160160
# TODO: Support arbitrary repositories, not just the current one?
161161
- name: Checkout repository
162-
uses: actions/checkout@v4
162+
uses: actions/checkout@v5
163163
with:
164164
ref: ${{ inputs.branch }}
165165
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
166166
# This is required such that yarn install can access private repositories, i.e. visyn_pro
167167
# https://github.com/yarnpkg/yarn/issues/2614#issuecomment-2148174789
168168
persist-credentials: false
169169
- name: Checkout github-workflows repository
170-
uses: actions/checkout@v4
170+
uses: actions/checkout@v5
171171
with:
172172
repository: datavisyn/github-workflows
173173
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -286,13 +286,13 @@ jobs:
286286
runs-on: 'ubuntu-22.04'
287287
steps:
288288
- name: Checkout repository
289-
uses: actions/checkout@v4
289+
uses: actions/checkout@v5
290290
with:
291291
ref: ${{ inputs.branch }}
292292
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
293293

294294
- name: Checkout github-workflows repository
295-
uses: actions/checkout@v4
295+
uses: actions/checkout@v5
296296
with:
297297
repository: datavisyn/github-workflows
298298
ref: ${{ env.WORKFLOW_BRANCH }}

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ jobs:
130130
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
131131
steps:
132132
- name: Checkout source repository
133-
uses: actions/checkout@v4
133+
uses: actions/checkout@v5
134134
with:
135135
ref: ${{ inputs.branch }}
136136
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
137137
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
138138
- name: Checkout github-workflows
139-
uses: actions/checkout@v4
139+
uses: actions/checkout@v5
140140
with:
141141
repository: datavisyn/github-workflows
142142
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -170,12 +170,12 @@ jobs:
170170
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
171171
steps:
172172
- name: Checkout source repository
173-
uses: actions/checkout@v4
173+
uses: actions/checkout@v5
174174
with:
175175
ref: ${{ inputs.branch }}
176176
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
177177
- name: Checkout github-workflows
178-
uses: actions/checkout@v4
178+
uses: actions/checkout@v5
179179
with:
180180
repository: datavisyn/github-workflows
181181
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -261,13 +261,13 @@ jobs:
261261
echo "REDIS_PORT=${{ job.services.redis.ports['6379'] }}"
262262
} >> "$GITHUB_ENV"
263263
- name: Checkout source repository
264-
uses: actions/checkout@v4
264+
uses: actions/checkout@v5
265265
with:
266266
ref: ${{ inputs.branch }}
267267
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
268268
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
269269
- name: Checkout github-workflows
270-
uses: actions/checkout@v4
270+
uses: actions/checkout@v5
271271
with:
272272
repository: datavisyn/github-workflows
273273
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -403,13 +403,13 @@ jobs:
403403
echo "REDIS_PORT=${{ job.services.redis.ports['6379'] }}"
404404
} >> "$GITHUB_ENV"
405405
- name: Checkout source repository
406-
uses: actions/checkout@v4
406+
uses: actions/checkout@v5
407407
with:
408408
ref: ${{ inputs.branch }}
409409
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
410410
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
411411
- name: Checkout github-workflows
412-
uses: actions/checkout@v4
412+
uses: actions/checkout@v5
413413
with:
414414
repository: datavisyn/github-workflows
415415
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ jobs:
5353
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
5454
steps:
5555
- name: Checkout source repository
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v5
5757
with:
5858
ref: ${{ inputs.branch }}
5959
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
6060
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
6161
- name: Checkout github-workflows
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v5
6363
with:
6464
repository: datavisyn/github-workflows
6565
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@v4
65+
- uses: actions/checkout@v5
6666
# checkout this workflow repository to get actions
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v5
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@v4
127+
- uses: actions/checkout@v5
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@v4
41+
- uses: actions/checkout@v5
4242
# checkout this workflow repository to get actions
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v5
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@v4
39+
- uses: actions/checkout@v5
4040
# checkout this workflow repository to get actions
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
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
@@ -42,12 +42,12 @@ jobs:
4242
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
4343
steps:
4444
- name: Checkout source repository
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
with:
4747
ref: ${{ inputs.branch }}
4848
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
4949
- name: Checkout github-workflows
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
with:
5252
repository: datavisyn/github-workflows
5353
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@v4
77+
- uses: actions/checkout@v5
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@v4
81+
- uses: actions/checkout@v5
8282
with:
8383
repository: datavisyn/github-workflows
8484
ref: ${{ env.WORKFLOW_BRANCH }}

0 commit comments

Comments
 (0)