Skip to content

Commit aa3570c

Browse files
Bump actions/upload-artifact from 4 to 5 in /.github/workflows
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] <support@github.com>
1 parent 369e0e2 commit aa3570c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

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

.github/workflows/publish-go-nightly-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
github.com/go-task/task/v3/cmd/task dist:${{ matrix.os.task }}
7474
7575
- name: Upload artifacts
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v5
7777
with:
7878
if-no-files-found: error
7979
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
@@ -209,7 +209,7 @@ jobs:
209209
echo "PACKAGE_FILENAME=$PACKAGE_FILENAME" >>$GITHUB_ENV
210210
211211
- name: Replace artifact with notarized build
212-
uses: actions/upload-artifact@v4
212+
uses: actions/upload-artifact@v5
213213
with:
214214
if-no-files-found: error
215215
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}

.github/workflows/publish-go-tester-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
141141
# Transfer builds to artifacts job
142142
- name: Upload build artifact
143-
uses: actions/upload-artifact@v4
143+
uses: actions/upload-artifact@v5
144144
with:
145145
path: ${{ env.DIST_DIR }}/${{ matrix.os.path }}
146146
name: ${{ matrix.os.artifact-name }}
@@ -173,7 +173,7 @@ jobs:
173173
done
174174
175175
- name: Upload checksum artifact
176-
uses: actions/upload-artifact@v4
176+
uses: actions/upload-artifact@v5
177177
with:
178178
path: ./*checksums.txt
179179
name: checksums

.github/workflows/release-go-task.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
github.com/go-task/task/v3/cmd/task dist:${{ matrix.os.task }}
8181
8282
- name: Upload artifacts
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v5
8484
with:
8585
if-no-files-found: error
8686
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
@@ -212,7 +212,7 @@ jobs:
212212
-C ../../ LICENSE.txt
213213
214214
- name: Replace artifact with notarized build
215-
uses: actions/upload-artifact@v4
215+
uses: actions/upload-artifact@v5
216216
with:
217217
if-no-files-found: error
218218
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}

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

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

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

0 commit comments

Comments
 (0)