Skip to content

Commit bc513a6

Browse files
committed
chore(BAC-21): bump actions/download-artifact to v4
1 parent 9cd3c2b commit bc513a6

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/build-python.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
submodules: ${{ inputs.with-submodules }}
108108
- name: Download artifact
109109
if: inputs.project-artifact
110-
uses: actions/download-artifact@v3
110+
uses: actions/download-artifact@v4
111111
with:
112112
name: ${{ inputs.project-artifact }}
113113
- name: Setup python
@@ -156,7 +156,7 @@ jobs:
156156
submodules: ${{ inputs.with-submodules }}
157157
- name: Download artifact
158158
if: inputs.project-artifact
159-
uses: actions/download-artifact@v3
159+
uses: actions/download-artifact@v4
160160
with:
161161
name: ${{ inputs.project-artifact }}
162162
- name: Setup python
@@ -208,7 +208,7 @@ jobs:
208208
fetch-depth: 0
209209
- name: Download artifact
210210
if: inputs.project-artifact
211-
uses: actions/download-artifact@v3
211+
uses: actions/download-artifact@v4
212212
with:
213213
name: ${{ inputs.project-artifact }}
214214
- name: Scan for Secrets
@@ -270,7 +270,7 @@ jobs:
270270
fetch-depth: 0
271271
- name: Download artifact
272272
if: inputs.project-artifact
273-
uses: actions/download-artifact@v3
273+
uses: actions/download-artifact@v4
274274
with:
275275
name: ${{ inputs.project-artifact }}
276276
- name: Setup python
@@ -348,7 +348,7 @@ jobs:
348348
fetch-depth: 0
349349
- name: Download artifact
350350
if: inputs.project-artifact
351-
uses: actions/download-artifact@v3
351+
uses: actions/download-artifact@v4
352352
with:
353353
name: ${{ inputs.project-artifact }}
354354
- name: Setup SSH Agent
@@ -408,7 +408,7 @@ jobs:
408408
submodules: ${{ inputs.with-submodules }}
409409
- name: Download artifact
410410
if: inputs.project-artifact
411-
uses: actions/download-artifact@v3
411+
uses: actions/download-artifact@v4
412412
with:
413413
name: ${{ inputs.project-artifact }}
414414
- name: Setup python

.github/workflows/deploy-integration.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ jobs:
269269
with:
270270
cluster_name: ${{ secrets.gke-cluster }}
271271
- name: Download build reference
272-
uses: actions/download-artifact@v3
272+
uses: actions/download-artifact@v4
273273
with:
274274
name: build-ref
275275
- name: Setup Kubernetes tools
@@ -326,7 +326,7 @@ jobs:
326326
with:
327327
cluster_name: ${{ secrets.gke-cluster }}
328328
- name: Download build reference
329-
uses: actions/download-artifact@v3
329+
uses: actions/download-artifact@v4
330330
with:
331331
name: build-ref
332332
- name: Setup Kubernetes tools
@@ -482,7 +482,7 @@ jobs:
482482
${{ runner.os }}-skaffold-${{ github.sha }}
483483
${{ runner.os }}-skaffold
484484
- name: Download artifact
485-
uses: actions/download-artifact@v3
485+
uses: actions/download-artifact@v4
486486
if: inputs.dist-artifact
487487
with:
488488
name: ${{ inputs.dist-artifact }}
@@ -585,7 +585,7 @@ jobs:
585585
with:
586586
cluster_name: ${{ secrets.gke-cluster }}
587587
- name: Download build reference
588-
uses: actions/download-artifact@v3
588+
uses: actions/download-artifact@v4
589589
with:
590590
name: build-ref
591591
- name: Setup Kubernetes tools

pkg/common/deploy-integration.cue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ import "list"
178178
#with.skaffold_cache.step,
179179
{
180180
name: "Download artifact"
181-
uses: "actions/download-artifact@v3"
181+
uses: "actions/download-artifact@v4"
182182
if: "inputs.dist-artifact"
183183
with: {
184184
name: "${{ inputs.dist-artifact }}"
@@ -306,7 +306,7 @@ import "list"
306306
#with.gke.step,
307307
{
308308
name: "Download build reference"
309-
uses: "actions/download-artifact@v3"
309+
uses: "actions/download-artifact@v4"
310310
with: {
311311
name: "build-ref"
312312
}

pkg/common/steps.cue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ package common
3636

3737
step: #step & {
3838
name: "Download artifact"
39-
uses: "actions/download-artifact@v3"
39+
uses: "actions/download-artifact@v4"
4040
if: "inputs.project-artifact"
4141
with: {
4242
name: "${{ inputs.project-artifact }}"

0 commit comments

Comments
 (0)