Skip to content

Commit 01b4ded

Browse files
Merge pull request #204 from datavisyn/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 0ce555b + e0eeb3d commit 01b4ded

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
@@ -43,13 +43,13 @@ jobs:
4343

4444
steps:
4545
- name: Checkout repository
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
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@v4
52+
uses: actions/checkout@v5
5353
with:
5454
repository: datavisyn/github-workflows
5555
ref: ${{ env.WORKFLOW_BRANCH }}

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

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

7373
- name: Checkout github-workflows repository
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v5
7575
with:
7676
repository: datavisyn/github-workflows
7777
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -166,15 +166,15 @@ jobs:
166166
sudo rm -rf /opt/ghc
167167
# TODO: Support arbitrary repositories, not just the current one?
168168
- name: Checkout repository
169-
uses: actions/checkout@v4
169+
uses: actions/checkout@v5
170170
with:
171171
ref: ${{ inputs.branch || github.sha }}
172172
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
173173
# This is required such that yarn install can access private repositories, i.e. visyn_pro
174174
# https://github.com/yarnpkg/yarn/issues/2614#issuecomment-2148174789
175175
persist-credentials: false
176176
- name: Checkout github-workflows repository
177-
uses: actions/checkout@v4
177+
uses: actions/checkout@v5
178178
with:
179179
repository: datavisyn/github-workflows
180180
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -296,13 +296,13 @@ jobs:
296296
runs-on: 'ubuntu-22.04'
297297
steps:
298298
- name: Checkout repository
299-
uses: actions/checkout@v4
299+
uses: actions/checkout@v5
300300
with:
301301
ref: ${{ inputs.branch || github.sha }}
302302
token: ${{ secrets.CHECKOUT_TOKEN || github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
303303

304304
- name: Checkout github-workflows repository
305-
uses: actions/checkout@v4
305+
uses: actions/checkout@v5
306306
with:
307307
repository: datavisyn/github-workflows
308308
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: ${{ inputs.runs_on || 'ubuntu-22.04' }}
143143
steps:
144144
- name: Checkout source repository
145-
uses: actions/checkout@v4
145+
uses: actions/checkout@v5
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@v4
151+
uses: actions/checkout@v5
152152
with:
153153
repository: datavisyn/github-workflows
154154
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -184,12 +184,12 @@ jobs:
184184
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
185185
steps:
186186
- name: Checkout source repository
187-
uses: actions/checkout@v4
187+
uses: actions/checkout@v5
188188
with:
189189
ref: ${{ inputs.branch || github.sha }}
190190
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
191191
- name: Checkout github-workflows
192-
uses: actions/checkout@v4
192+
uses: actions/checkout@v5
193193
with:
194194
repository: datavisyn/github-workflows
195195
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -276,13 +276,13 @@ jobs:
276276
echo "REDIS_PORT=${{ job.services.redis.ports['6379'] }}"
277277
} >> "$GITHUB_ENV"
278278
- name: Checkout source repository
279-
uses: actions/checkout@v4
279+
uses: actions/checkout@v5
280280
with:
281281
ref: ${{ inputs.branch || github.sha }}
282282
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
283283
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
284284
- name: Checkout github-workflows
285-
uses: actions/checkout@v4
285+
uses: actions/checkout@v5
286286
with:
287287
repository: datavisyn/github-workflows
288288
ref: ${{ env.WORKFLOW_BRANCH }}
@@ -419,13 +419,13 @@ jobs:
419419
echo "REDIS_PORT=${{ job.services.redis.ports['6379'] }}"
420420
} >> "$GITHUB_ENV"
421421
- name: Checkout source repository
422-
uses: actions/checkout@v4
422+
uses: actions/checkout@v5
423423
with:
424424
ref: ${{ inputs.branch || github.sha }}
425425
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
426426
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
427427
- name: Checkout github-workflows
428-
uses: actions/checkout@v4
428+
uses: actions/checkout@v5
429429
with:
430430
repository: datavisyn/github-workflows
431431
ref: ${{ env.WORKFLOW_BRANCH }}

.github/workflows/build-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ jobs:
5757
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
5858
steps:
5959
- name: Checkout source repository
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v5
6161
with:
6262
ref: ${{ inputs.branch }}
6363
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
6464
fetch-depth: ${{ inputs.chromatic_enable && '0' || '1' }}
6565
- name: Checkout github-workflows
66-
uses: actions/checkout@v4
66+
uses: actions/checkout@v5
6767
with:
6868
repository: datavisyn/github-workflows
6969
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
@@ -46,12 +46,12 @@ jobs:
4646
runs-on: ${{ inputs.runs_on || 'ubuntu-22.04' }}
4747
steps:
4848
- name: Checkout source repository
49-
uses: actions/checkout@v4
49+
uses: actions/checkout@v5
5050
with:
5151
ref: ${{ inputs.branch }}
5252
token: ${{ github.event.repository.private == true && secrets.DATAVISYN_BOT_REPO_TOKEN || github.token }}
5353
- name: Checkout github-workflows
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-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)