Skip to content

Commit b375f21

Browse files
[skip changelog] Bump actions/download-artifact from 5 to 6
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f3121a3 commit b375f21

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/publish-go-nightly-task.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
uses: actions/checkout@v5
106106

107107
- name: Download artifacts
108-
uses: actions/download-artifact@v5
108+
uses: actions/download-artifact@v6
109109
with:
110110
name: ${{ env.ARTIFACT_NAME }}-${{ matrix.artifact.artifact-suffix }}
111111
path: ${{ env.DIST_DIR }}
@@ -210,7 +210,7 @@ jobs:
210210
uses: actions/checkout@v5
211211

212212
- name: Download artifacts
213-
uses: actions/download-artifact@v5
213+
uses: actions/download-artifact@v6
214214
with:
215215
name: ${{ env.ARTIFACT_NAME }}-Windows_64bit
216216
path: ${{ env.DIST_DIR }}
@@ -264,7 +264,7 @@ jobs:
264264
uses: actions/checkout@v5
265265

266266
- name: Download artifact
267-
uses: actions/download-artifact@v5
267+
uses: actions/download-artifact@v6
268268
with:
269269
pattern: ${{ env.ARTIFACT_NAME }}-*
270270
merge-multiple: true

.github/workflows/publish-go-tester-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164

165165
steps:
166166
- name: Download build artifacts
167-
uses: actions/download-artifact@v5
167+
uses: actions/download-artifact@v6
168168
- name: Output checksum
169169
run: |
170170
TAG="${{ needs.package-name-prefix.outputs.prefix }}git-snapshot"

.github/workflows/release-go-task.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
uses: actions/checkout@v5
104104

105105
- name: Download artifacts
106-
uses: actions/download-artifact@v5
106+
uses: actions/download-artifact@v6
107107
with:
108108
name: ${{ env.ARTIFACT_NAME }}-${{ matrix.artifact.artifact-suffix }}
109109
path: ${{ env.DIST_DIR }}
@@ -208,7 +208,7 @@ jobs:
208208
uses: actions/checkout@v5
209209

210210
- name: Download artifacts
211-
uses: actions/download-artifact@v5
211+
uses: actions/download-artifact@v6
212212
with:
213213
name: ${{ env.ARTIFACT_NAME }}-Windows_64bit
214214
path: ${{ env.DIST_DIR }}
@@ -262,7 +262,7 @@ jobs:
262262
uses: actions/checkout@v5
263263

264264
- name: Download artifact
265-
uses: actions/download-artifact@v5
265+
uses: actions/download-artifact@v6
266266
with:
267267
pattern: ${{ env.ARTIFACT_NAME }}-*
268268
merge-multiple: true

.github/workflows/sync-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
uses: actions/checkout@v5
110110

111111
- name: Download configuration files artifact
112-
uses: actions/download-artifact@v5
112+
uses: actions/download-artifact@v6
113113
with:
114114
pattern: ${{ env.CONFIGURATIONS_ARTIFACT }}-*
115115
merge-multiple: true

.github/workflows/test-go-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
run: go install github.com/wadey/gocovmerge@b5bfa59
183183

184184
- name: Download coverage data artifact
185-
uses: actions/download-artifact@v5
185+
uses: actions/download-artifact@v6
186186
with:
187187
pattern: ${{ env.COVERAGE_ARTIFACT }}-*
188188
merge-multiple: true

0 commit comments

Comments
 (0)