Skip to content

Commit 9dccd7b

Browse files
authored
chore(deps): upgrade actions/download-artifact to v4 (#4762)
LOL. 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
1 parent 5d77176 commit 9dccd7b

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
@@ -59,7 +59,7 @@ jobs:
5959
ref: gh-pages
6060
token: ${{ secrets.PROJEN_GITHUB_TOKEN }}
6161
- name: Download Artifact
62-
uses: actions/download-artifact@v3
62+
uses: actions/download-artifact@v4
6363
with:
6464
name: doc-site
6565
path: ${{ runner.temp }}/site

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ jobs:
289289
steps:
290290
# Check out the code
291291
- name: Download Artifact
292-
uses: actions/download-artifact@v3
292+
uses: actions/download-artifact@v4
293293
with:
294294
name: built-tree
295295
- name: Extract Artifact
@@ -385,7 +385,7 @@ jobs:
385385
steps:
386386
# Check out the code
387387
- name: Download Artifact
388-
uses: actions/download-artifact@v3
388+
uses: actions/download-artifact@v4
389389
with:
390390
name: release-package
391391
path: ${{ runner.temp }}/release-package

.github/workflows/yarn-upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
uses: actions/checkout@v4
124124

125125
- name: Download patch
126-
uses: actions/download-artifact@v3
126+
uses: actions/download-artifact@v4
127127
with:
128128
name: upgrade.patch
129129
path: ${{ runner.temp }}

0 commit comments

Comments
 (0)