Skip to content

Commit 3ed2e8c

Browse files
authored
Merge pull request #72 from tillkuhn/dependabot/github_actions/actions/download-artifact-6
Bump actions/download-artifact from 5 to 6
2 parents 9901080 + bd5e4cf commit 3ed2e8c

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@v5
60+
uses: actions/download-artifact@v6
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@v5
101+
uses: actions/download-artifact@v6
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@v5
201+
uses: actions/download-artifact@v6
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)