Skip to content

Commit 5d77176

Browse files
chore: upgrade actions/upload-artifact to v4 (#4758)
Version 3 is now [deprecated](https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/). --- By submitting this pull request, I confirm that my contribution is made under the terms of the [Apache 2.0 license]. [Apache 2.0 license]: https://www.apache.org/licenses/LICENSE-2.0 --------- Co-authored-by: Kaizen Conroy <[email protected]>
1 parent 05be5c1 commit 5d77176

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
--site-dir ${{ runner.temp }}/site
4141
working-directory: gh-pages
4242
- name: Upload Artifact
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: doc-site
4646
path: ${{ runner.temp }}/site/

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
.
8181
# Upload artifact (we'll tar it up to save time)
8282
- name: 'Upload Artifact: built-tree'
83-
uses: actions/upload-artifact@v3
83+
uses: actions/upload-artifact@v4
8484
with:
8585
name: built-tree
8686
path: ${{ runner.temp }}/built-tree.tgz
@@ -173,7 +173,7 @@ jobs:
173173
yarn package
174174
# Upload artifacts
175175
- name: 'Upload Artifact: release-package'
176-
uses: actions/upload-artifact@v3
176+
uses: actions/upload-artifact@v4
177177
with:
178178
name: release-package
179179
path: ${{ github.workspace }}/dist/

.github/workflows/yarn-upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
git add .
107107
git diff --patch --staged > ${{ runner.temp }}/upgrade.patch
108108
- name: Upload Patch
109-
uses: actions/upload-artifact@v3
109+
uses: actions/upload-artifact@v4
110110
with:
111111
name: upgrade.patch
112112
path: ${{ runner.temp }}/upgrade.patch

0 commit comments

Comments
 (0)