Skip to content

Commit 5fcad04

Browse files
chore(deps): bump actions/download-artifact from 3 to 4 (#1819)
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 3 to 4. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 13f581a commit 5fcad04

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/CI.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -288,28 +288,28 @@ jobs:
288288
run: |
289289
go install github.com/mattn/goveralls@latest
290290
- name: Get coverage report
291-
uses: actions/download-artifact@v3
291+
uses: actions/download-artifact@v4
292292
with:
293293
name: coverage-out
294294
path: merge
295295

296296
- name: Get cli e2e coverage report
297-
uses: actions/download-artifact@v3
297+
uses: actions/download-artifact@v4
298298
with:
299299
name: e2e-cli-coverage-out
300300
path: merge
301301
- name: Get language e2e coverage report
302-
uses: actions/download-artifact@v3
302+
uses: actions/download-artifact@v4
303303
with:
304304
name: e2e-lang-coverage-out
305305
path: merge
306306
- name: Get cli v1 e2e coverage report
307-
uses: actions/download-artifact@v3
307+
uses: actions/download-artifact@v4
308308
with:
309309
name: e2e-cli-v1-coverage-out
310310
path: merge
311311
- name: Get language v1 e2e coverage report
312-
uses: actions/download-artifact@v3
312+
uses: actions/download-artifact@v4
313313
with:
314314
name: e2e-lang-v1-coverage-out
315315
path: merge

.github/workflows/nightly.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -171,17 +171,17 @@ jobs:
171171
go install github.com/mattn/goveralls@latest
172172
go install github.com/wadey/gocovmerge@latest
173173
- name: Get coverage report
174-
uses: actions/download-artifact@v3
174+
uses: actions/download-artifact@v4
175175
with:
176176
name: coverage-out
177177
path: coverage.out
178178
- name: Get cli e2e coverage report
179-
uses: actions/download-artifact@v3
179+
uses: actions/download-artifact@v4
180180
with:
181181
name: e2e-cli-coverage-out
182182
path: e2e-cli-coverage.out
183183
- name: Get language e2e coverage report
184-
uses: actions/download-artifact@v3
184+
uses: actions/download-artifact@v4
185185
with:
186186
name: e2e-lang-coverage-out
187187
path: e2e-lang-coverage.out

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
steps:
5858
- uses: actions/checkout@v4
5959
- name: Get gobin
60-
uses: actions/download-artifact@v3
60+
uses: actions/download-artifact@v4
6161
with:
6262
name: gobin_${{ github.event.release.tag_name }}
6363
path: dist/
@@ -176,7 +176,7 @@ jobs:
176176
restore-keys: |
177177
${{ runner.os }}-buildx-
178178
- name: Get gobin
179-
uses: actions/download-artifact@v3
179+
uses: actions/download-artifact@v4
180180
with:
181181
name: gobin_${{ github.event.release.tag_name }}
182182
path: dist/

0 commit comments

Comments
 (0)