Skip to content

Commit 8421d29

Browse files
Bump actions/download-artifact from 5 to 6 in /workflow-templates
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 f957da1 commit 8421d29

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

workflow-templates/publish-go-nightly-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
uses: actions/checkout@v5
102102

103103
- name: Download artifacts
104-
uses: actions/download-artifact@v5
104+
uses: actions/download-artifact@v6
105105
with:
106106
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
107107
path: ${{ env.DIST_DIR }}
@@ -217,7 +217,7 @@ jobs:
217217

218218
steps:
219219
- name: Download artifact
220-
uses: actions/download-artifact@v5
220+
uses: actions/download-artifact@v6
221221
with:
222222
pattern: ${{ env.ARTIFACT_PREFIX }}*
223223
merge-multiple: true

workflow-templates/publish-go-tester-task.yml

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

147147
steps:
148148
- name: Download build artifacts
149-
uses: actions/download-artifact@v5
149+
uses: actions/download-artifact@v6
150150

151151
- name: Create checksum file
152152
run: |

workflow-templates/release-go-crosscompile-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
uses: actions/checkout@v5
112112

113113
- name: Download artifacts
114-
uses: actions/download-artifact@v5
114+
uses: actions/download-artifact@v6
115115
with:
116116
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
117117
path: ${{ env.DIST_DIR }}
@@ -221,7 +221,7 @@ jobs:
221221

222222
steps:
223223
- name: Download artifact
224-
uses: actions/download-artifact@v5
224+
uses: actions/download-artifact@v6
225225
with:
226226
merge-multiple: true
227227
path: ${{ env.DIST_DIR }}

workflow-templates/release-go-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
uses: actions/checkout@v5
112112

113113
- name: Download artifacts
114-
uses: actions/download-artifact@v5
114+
uses: actions/download-artifact@v6
115115
with:
116116
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
117117
path: ${{ env.DIST_DIR }}
@@ -221,7 +221,7 @@ jobs:
221221

222222
steps:
223223
- name: Download artifact
224-
uses: actions/download-artifact@v5
224+
uses: actions/download-artifact@v6
225225
with:
226226
pattern: ${{ env.ARTIFACT_PREFIX }}*
227227
merge-multiple: true

workflow-templates/sync-labels-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
uses: actions/checkout@v5
123123

124124
- name: Download configuration file artifacts
125-
uses: actions/download-artifact@v5
125+
uses: actions/download-artifact@v6
126126
with:
127127
merge-multiple: true
128128
pattern: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}*

workflow-templates/sync-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
uses: actions/checkout@v5
113113

114114
- name: Download configuration file artifacts
115-
uses: actions/download-artifact@v5
115+
uses: actions/download-artifact@v6
116116
with:
117117
merge-multiple: true
118118
pattern: ${{ env.CONFIGURATIONS_ARTIFACT_PREFIX }}*

0 commit comments

Comments
 (0)