Skip to content

Commit b443ee4

Browse files
authored
Merge pull request #628 from arduino/dependabot/github_actions/dot-github/workflows/actions/download-artifact-5
Bump actions/download-artifact from 4 to 5 in /.github/workflows
2 parents 1be55ba + 7c594a2 commit b443ee4

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/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 }}*

.github/workflows/test-install-script.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575

7676
steps:
7777
- name: Download script artifact
78-
uses: actions/download-artifact@v4
78+
uses: actions/download-artifact@v5
7979
with:
8080
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
8181

@@ -114,7 +114,7 @@ jobs:
114114
echo "BINDIR=${{ runner.temp }}/custom-installation-folder" >> "$GITHUB_ENV"
115115
116116
- name: Download script artifact
117-
uses: actions/download-artifact@v4
117+
uses: actions/download-artifact@v5
118118
with:
119119
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
120120

@@ -151,7 +151,7 @@ jobs:
151151

152152
steps:
153153
- name: Download script artifact
154-
uses: actions/download-artifact@v4
154+
uses: actions/download-artifact@v5
155155
with:
156156
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
157157

@@ -184,7 +184,7 @@ jobs:
184184

185185
steps:
186186
- name: Download script artifact
187-
uses: actions/download-artifact@v4
187+
uses: actions/download-artifact@v5
188188
with:
189189
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
190190

@@ -228,7 +228,7 @@ jobs:
228228
echo "SECOND_BINDIR=${{ runner.temp }}/${SECOND_INSTALLATION_FOLDER}" >> "$GITHUB_ENV"
229229
230230
- name: Download script artifact
231-
uses: actions/download-artifact@v4
231+
uses: actions/download-artifact@v5
232232
with:
233233
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
234234

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)