Skip to content

Commit 7c594a2

Browse files
dependabot[bot]per1234
authored andcommitted
Bump actions/download-artifact from 4 to 5 in /workflow-templates
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 4 to 5. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8c452e1 commit 7c594a2

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
@@ -99,7 +99,7 @@ jobs:
9999
uses: actions/checkout@v4
100100

101101
- name: Download artifacts
102-
uses: actions/download-artifact@v4
102+
uses: actions/download-artifact@v5
103103
with:
104104
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
105105
path: ${{ env.DIST_DIR }}
@@ -191,7 +191,7 @@ jobs:
191191

192192
steps:
193193
- name: Download artifact
194-
uses: actions/download-artifact@v4
194+
uses: actions/download-artifact@v5
195195
with:
196196
pattern: ${{ env.ARTIFACT_PREFIX }}*
197197
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@v4
149+
uses: actions/download-artifact@v5
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
@@ -113,7 +113,7 @@ jobs:
113113
uses: actions/checkout@v4
114114

115115
- name: Download artifacts
116-
uses: actions/download-artifact@v4
116+
uses: actions/download-artifact@v5
117117
with:
118118
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
119119
path: ${{ env.DIST_DIR }}
@@ -203,7 +203,7 @@ jobs:
203203

204204
steps:
205205
- name: Download artifact
206-
uses: actions/download-artifact@v4
206+
uses: actions/download-artifact@v5
207207
with:
208208
merge-multiple: true
209209
path: ${{ env.DIST_DIR }}

workflow-templates/release-go-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
uses: actions/checkout@v4
109109

110110
- name: Download artifacts
111-
uses: actions/download-artifact@v4
111+
uses: actions/download-artifact@v5
112112
with:
113113
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
114114
path: ${{ env.DIST_DIR }}
@@ -198,7 +198,7 @@ jobs:
198198

199199
steps:
200200
- name: Download artifact
201-
uses: actions/download-artifact@v4
201+
uses: actions/download-artifact@v5
202202
with:
203203
pattern: ${{ env.ARTIFACT_PREFIX }}*
204204
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@v4
123123

124124
- name: Download configuration file artifacts
125-
uses: actions/download-artifact@v4
125+
uses: actions/download-artifact@v5
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@v4
113113

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

0 commit comments

Comments
 (0)