Skip to content

Commit 762c4be

Browse files
Bump actions/upload-artifact from 5 to 6 in /.github/workflows
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1f3053c commit 762c4be

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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@v5
113+
uses: actions/upload-artifact@v6
114114
with:
115115
if-no-files-found: error
116116
include-hidden-files: true

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
github.com/go-task/task/v3/cmd/task dist:${{ matrix.os.task }}
7777
7878
- name: Upload artifacts
79-
uses: actions/upload-artifact@v5
79+
uses: actions/upload-artifact@v6
8080
with:
8181
if-no-files-found: error
8282
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
@@ -207,7 +207,7 @@ jobs:
207207
echo "PACKAGE_FILENAME=$PACKAGE_FILENAME" >>$GITHUB_ENV
208208
209209
- name: Replace artifact with notarized build
210-
uses: actions/upload-artifact@v5
210+
uses: actions/upload-artifact@v6
211211
with:
212212
if-no-files-found: error
213213
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
@@ -241,7 +241,7 @@ jobs:
241241
sha256sum ${{ env.PROJECT_NAME }}_${{ env.TAG }}* >"${{ env.CHECKSUM_FILE_PATH }}"
242242
243243
- name: Upload checksum artifact
244-
uses: actions/upload-artifact@v5
244+
uses: actions/upload-artifact@v6
245245
with:
246246
if-no-files-found: error
247247
name: ${{ env.ARTIFACT_PREFIX }}checksums

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ jobs:
144144
145145
# Transfer builds to artifacts job
146146
- name: Upload build artifact
147-
uses: actions/upload-artifact@v5
147+
uses: actions/upload-artifact@v6
148148
with:
149149
path: ${{ env.DIST_DIR }}/${{ matrix.os.path }}
150150
name: ${{ matrix.os.artifact-name }}
@@ -177,7 +177,7 @@ jobs:
177177
done
178178
179179
- name: Upload checksum artifact
180-
uses: actions/upload-artifact@v5
180+
uses: actions/upload-artifact@v6
181181
with:
182182
path: ./*checksums.txt
183183
name: checksums

.github/workflows/release-go-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@v5
76+
uses: actions/upload-artifact@v6
7777
with:
7878
if-no-files-found: error
7979
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
@@ -201,7 +201,7 @@ jobs:
201201
-C ../../ LICENSE.txt
202202
203203
- name: Replace artifact with notarized build
204-
uses: actions/upload-artifact@v5
204+
uses: actions/upload-artifact@v6
205205
with:
206206
if-no-files-found: error
207207
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@v5
87+
uses: actions/upload-artifact@v6
8888
with:
8989
path: ${{ matrix.filename }}
9090
if-no-files-found: error

0 commit comments

Comments
 (0)