Skip to content

Commit ed3c0b8

Browse files
Bump actions/download-artifact from 6 to 7
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6 to 7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 83cef01 commit ed3c0b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/playground.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
needs: [playground-job]
5858
steps:
5959
- name: Download binaries built by go-releaser from previous job
60-
uses: actions/download-artifact@v6
60+
uses: actions/download-artifact@v7
6161
with:
6262
name: go-releaser-binaries
6363
path: app2/ # this path will contain app1 and app2

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
fetch-depth: 0
9999

100100
- name: Download binaries built by go-releaser from previous job
101-
uses: actions/download-artifact@v6
101+
uses: actions/download-artifact@v7
102102
with:
103103
name: go-releaser-binaries
104104
path: app/ # must specify path (e.g. same as during upload), or files end up on root (?)
@@ -198,7 +198,7 @@ jobs:
198198
needs: [docker-push]
199199
steps:
200200
- name: Download image digests
201-
uses: actions/download-artifact@v6
201+
uses: actions/download-artifact@v7
202202
with:
203203
# see comment in upload-artifact@v4, we need to merge by pattern due to the platform specific names
204204
pattern: digests-*

0 commit comments

Comments
 (0)