Skip to content

Commit 26394e2

Browse files
authored
Merge pull request #676 from arduino/dependabot/github_actions/workflow-templates/actions/upload-artifact-5
Bump actions/upload-artifact from 4 to 5 in /workflow-templates
2 parents 0e8f3ca + 5ea8563 commit 26394e2

11 files changed

+17
-17
lines changed

.github/workflows/check-clang-format.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
if: >
127127
always() &&
128128
steps.check.outcome == 'failure'
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v5
130130
with:
131131
path: ${{ env.WORKING_FOLDER }}/expected/.clang-format
132132
if-no-files-found: error
@@ -194,7 +194,7 @@ jobs:
194194
if: >
195195
always() &&
196196
steps.check.outcome == 'failure'
197-
uses: actions/upload-artifact@v4
197+
uses: actions/upload-artifact@v5
198198
with:
199199
path: ${{ env.WORKING_FOLDER }}/output
200200
if-no-files-found: error
@@ -252,7 +252,7 @@ jobs:
252252
OUTPUT_PATH="${{ env.CONVERSION_OUTPUT_PATH }}"
253253
254254
- name: Save conversion to a workflow artifact
255-
uses: actions/upload-artifact@v4
255+
uses: actions/upload-artifact@v5
256256
with:
257257
path: ${{ env.CONVERSION_OUTPUT_PATH }}
258258
if-no-files-found: error

.github/workflows/sync-labels-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
8484

8585
- name: Pass configuration files to next job via workflow artifact
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
path: ${{ matrix.filename }}
8989
if-no-files-found: error

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
"${{ env.SCRIPT_FOLDER }}/${{ env.SCRIPT_NAME }}"
5555
5656
- name: Save configured script as workflow artifact
57-
uses: actions/upload-artifact@v4
57+
uses: actions/upload-artifact@v5
5858
with:
5959
if-no-files-found: error
6060
path: ${{ env.SCRIPT_FOLDER }}/${{ env.SCRIPT_NAME }}

workflow-templates/check-go-dependencies-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
111111
- name: Upload cache to workflow artifact
112112
if: failure() && steps.diff.outcome == 'failure'
113-
uses: actions/upload-artifact@v4
113+
uses: actions/upload-artifact@v5
114114
with:
115115
if-no-files-found: error
116116
include-hidden-files: true

workflow-templates/check-npm-dependencies-task.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
122122
- name: Upload cache to workflow artifact
123123
if: failure() && steps.diff.outcome == 'failure'
124-
uses: actions/upload-artifact@v4
124+
uses: actions/upload-artifact@v5
125125
with:
126126
if-no-files-found: error
127127
include-hidden-files: true

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
github.com/go-task/task/v3/cmd/task dist:${{ matrix.os.task }}
6666
6767
- name: Upload artifacts
68-
uses: actions/upload-artifact@v4
68+
uses: actions/upload-artifact@v5
6969
with:
7070
if-no-files-found: error
7171
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
@@ -201,7 +201,7 @@ jobs:
201201
echo "PACKAGE_FILENAME=$PACKAGE_FILENAME" >>$GITHUB_ENV
202202
203203
- name: Replace artifact with notarized build
204-
uses: actions/upload-artifact@v4
204+
uses: actions/upload-artifact@v5
205205
with:
206206
if-no-files-found: error
207207
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
132132
# Transfer builds to artifacts job
133133
- name: Upload build artifact
134-
uses: actions/upload-artifact@v4
134+
uses: actions/upload-artifact@v5
135135
with:
136136
path: ${{ env.DIST_DIR }}/${{ matrix.os.path }}
137137
name: ${{ matrix.os.artifact-name }}
@@ -164,7 +164,7 @@ jobs:
164164
done
165165
166166
- name: Upload checksum artifact
167-
uses: actions/upload-artifact@v4
167+
uses: actions/upload-artifact@v5
168168
with:
169169
path: ./*checksums.txt
170170
name: checksums

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
github.com/go-task/task/v3/cmd/task dist:${{ matrix.os.task }}
7373
7474
- name: Upload artifacts
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
if-no-files-found: error
7878
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
@@ -204,7 +204,7 @@ jobs:
204204
"${{ env.BUILD_FOLDER }}/"
205205
206206
- name: Replace artifact with notarized build
207-
uses: actions/upload-artifact@v4
207+
uses: actions/upload-artifact@v5
208208
with:
209209
if-no-files-found: error
210210
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}

workflow-templates/release-go-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
github.com/go-task/task/v3/cmd/task dist:${{ matrix.os.task }}
7373
7474
- name: Upload artifacts
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
if-no-files-found: error
7878
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
@@ -204,7 +204,7 @@ jobs:
204204
-C ../../ LICENSE.txt
205205
206206
- name: Replace artifact with notarized build
207-
uses: actions/upload-artifact@v4
207+
uses: actions/upload-artifact@v5
208208
with:
209209
if-no-files-found: error
210210
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}

workflow-templates/sync-labels-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}
8484

8585
- name: Pass configuration files to next job via workflow artifact
86-
uses: actions/upload-artifact@v4
86+
uses: actions/upload-artifact@v5
8787
with:
8888
path: ${{ matrix.filename }}
8989
if-no-files-found: error

0 commit comments

Comments
 (0)