Skip to content

Commit

Permalink
chore(deps): bump actions/download-artifact from 3 to 4 (#1819)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
dependabot[bot] authored Dec 28, 2023
1 parent 13f581a commit 5fcad04
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,28 +288,28 @@ jobs:
run: |
go install github.com/mattn/goveralls@latest
- name: Get coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-out
path: merge

- name: Get cli e2e coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: e2e-cli-coverage-out
path: merge
- name: Get language e2e coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: e2e-lang-coverage-out
path: merge
- name: Get cli v1 e2e coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: e2e-cli-v1-coverage-out
path: merge
- name: Get language v1 e2e coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: e2e-lang-v1-coverage-out
path: merge
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,17 +171,17 @@ jobs:
go install github.com/mattn/goveralls@latest
go install github.com/wadey/gocovmerge@latest
- name: Get coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: coverage-out
path: coverage.out
- name: Get cli e2e coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: e2e-cli-coverage-out
path: e2e-cli-coverage.out
- name: Get language e2e coverage report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: e2e-lang-coverage-out
path: e2e-lang-coverage.out
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Get gobin
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: gobin_${{ github.event.release.tag_name }}
path: dist/
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
restore-keys: |
${{ runner.os }}-buildx-
- name: Get gobin
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: gobin_${{ github.event.release.tag_name }}
path: dist/
Expand Down

0 comments on commit 5fcad04

Please sign in to comment.