Skip to content

Commit 24a0d7d

Browse files
committed
Update upload-artifact to v4
This contains a breaking change around artifact merging no longer being done. This was not relied on, so it's fine.
1 parent c3b05c6 commit 24a0d7d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
run: src/ci/scripts/create-doc-artifacts.sh
167167
if: success() && !env.SKIP_JOB
168168
- name: upload artifacts to github
169-
uses: actions/upload-artifact@v3
169+
uses: actions/upload-artifact@v4
170170
with:
171171
name: "${{ env.DOC_ARTIFACT_NAME }}"
172172
path: obj/artifacts/doc
@@ -576,7 +576,7 @@ jobs:
576576
run: src/ci/scripts/create-doc-artifacts.sh
577577
if: success() && !env.SKIP_JOB
578578
- name: upload artifacts to github
579-
uses: actions/upload-artifact@v3
579+
uses: actions/upload-artifact@v4
580580
with:
581581
name: "${{ env.DOC_ARTIFACT_NAME }}"
582582
path: obj/artifacts/doc
@@ -715,7 +715,7 @@ jobs:
715715
run: src/ci/scripts/create-doc-artifacts.sh
716716
if: success() && !env.SKIP_JOB
717717
- name: upload artifacts to github
718-
uses: actions/upload-artifact@v3
718+
uses: actions/upload-artifact@v4
719719
with:
720720
name: "${{ env.DOC_ARTIFACT_NAME }}"
721721
path: obj/artifacts/doc

.github/workflows/dependencies.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,13 @@ jobs:
6767
# Remove first line that always just says "Updating crates.io index"
6868
run: cargo update 2>&1 | sed '/crates.io index/d' | tee -a cargo_update.log
6969
- name: upload Cargo.lock artifact for use in PR
70-
uses: actions/upload-artifact@v3
70+
uses: actions/upload-artifact@v4
7171
with:
7272
name: Cargo-lock
7373
path: Cargo.lock
7474
retention-days: 1
7575
- name: upload cargo-update log artifact for use in PR
76-
uses: actions/upload-artifact@v3
76+
uses: actions/upload-artifact@v4
7777
with:
7878
name: cargo-updates
7979
path: cargo_update.log

src/ci/github-actions/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ x--expand-yaml-anchors--remove:
261261
<<: *step
262262

263263
- name: upload artifacts to github
264-
uses: actions/upload-artifact@v3
264+
uses: actions/upload-artifact@v4
265265
with:
266266
# name is set in previous step
267267
name: ${{ env.DOC_ARTIFACT_NAME }}

0 commit comments

Comments
 (0)