Skip to content

Commit 7bc3fcb

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

8 files changed

+12
-12
lines changed

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

workflow-templates/sync-labels.yml

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

7575
- name: Pass configuration files to next job via workflow artifact
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v5
7777
with:
7878
path: ${{ matrix.filename }}
7979
if-no-files-found: error

0 commit comments

Comments
 (0)