Skip to content

Commit 4330e81

Browse files
authored
Merge pull request #699 from arduino/dependabot/github_actions/workflow-templates/actions/download-artifact-7
Bump actions/download-artifact from 6 to 7 in /workflow-templates
2 parents bfec193 + e1a4973 commit 4330e81

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@v6
123123

124124
- name: Download configuration file artifacts
125-
uses: actions/download-artifact@v6
125+
uses: actions/download-artifact@v7
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
@@ -76,7 +76,7 @@ jobs:
7676

7777
steps:
7878
- name: Download script artifact
79-
uses: actions/download-artifact@v6
79+
uses: actions/download-artifact@v7
8080
with:
8181
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
8282

@@ -120,7 +120,7 @@ jobs:
120120
echo "BINDIR=${{ runner.temp }}/custom-installation-folder" >>"$GITHUB_ENV"
121121
122122
- name: Download script artifact
123-
uses: actions/download-artifact@v6
123+
uses: actions/download-artifact@v7
124124
with:
125125
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
126126

@@ -165,7 +165,7 @@ jobs:
165165

166166
steps:
167167
- name: Download script artifact
168-
uses: actions/download-artifact@v6
168+
uses: actions/download-artifact@v7
169169
with:
170170
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
171171

@@ -207,7 +207,7 @@ jobs:
207207

208208
steps:
209209
- name: Download script artifact
210-
uses: actions/download-artifact@v6
210+
uses: actions/download-artifact@v7
211211
with:
212212
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
213213

@@ -260,7 +260,7 @@ jobs:
260260
echo "SECOND_BINDIR=${{ runner.temp }}/${SECOND_INSTALLATION_FOLDER}" >>"$GITHUB_ENV"
261261
262262
- name: Download script artifact
263-
uses: actions/download-artifact@v6
263+
uses: actions/download-artifact@v7
264264
with:
265265
name: ${{ env.SCRIPT_ARTIFACT_NAME }}
266266

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@v6
102102

103103
- name: Download artifacts
104-
uses: actions/download-artifact@v6
104+
uses: actions/download-artifact@v7
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@v6
220+
uses: actions/download-artifact@v7
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@v6
149+
uses: actions/download-artifact@v7
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@v6
112112

113113
- name: Download artifacts
114-
uses: actions/download-artifact@v6
114+
uses: actions/download-artifact@v7
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@v6
224+
uses: actions/download-artifact@v7
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@v6
112112

113113
- name: Download artifacts
114-
uses: actions/download-artifact@v6
114+
uses: actions/download-artifact@v7
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@v6
224+
uses: actions/download-artifact@v7
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@v6
123123

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

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

0 commit comments

Comments
 (0)