Skip to content

Commit 9536d07

Browse files
chore(gha): bump actions/upload-artifact from 4 to 5 (#431)
1 parent 855ad46 commit 9536d07

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/delete-artifacts-of-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
mkdir site
2020
echo "This is a preview site for <b>PR #${PR_NUMBER}</b>" > site/file1.html
2121
echo "This is a another preview site for <b>PR #${PR_NUMBER}</b>" > site/file2.html
22-
- uses: actions/upload-artifact@v4
22+
- uses: actions/upload-artifact@v5
2323
with:
2424
name: artifact-1
2525
path: site/file1.html
2626
if-no-files-found: error
27-
- uses: actions/upload-artifact@v4
27+
- uses: actions/upload-artifact@v5
2828
with:
2929
name: artifact-2
3030
path: site/file2.html

.github/workflows/deploy-documentation-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build documentation
2222
uses: ./.github/actions/build-documentation
2323
- name: Upload
24-
uses: actions/upload-artifact@v4
24+
uses: actions/upload-artifact@v5
2525
with:
2626
name: documentation-${{github.sha}}
2727
path: build/docs

.github/workflows/post-release-upload-demo-archive-and-trigger-companion-repositories-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set ARTIFACT_NAME
2828
run: echo "ARTIFACT_NAME=demo-${{github.sha}}" >> $GITHUB_ENV
2929
- name: Upload Demo
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v5
3131
with:
3232
name: ${{ env.ARTIFACT_NAME }}
3333
path: LICENSE

.github/workflows/surge-pr-fork-01-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
sed -i "s/@PR_NUMBER@/${PR_NUMBER}/g" site/index.html
2525
2626
- name: Upload artifact
27-
uses: actions/upload-artifact@v4
27+
uses: actions/upload-artifact@v5
2828
with:
2929
name: pr-build-dist # must be kept in sync with the artifact name downloaded in the deploy stage
3030
path: site/

0 commit comments

Comments
 (0)