Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 016c017

Browse files
committed
feat: upgrade download-artifact action to v4 in release workflow
1 parent f8ea052 commit 016c017

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,37 +79,37 @@ jobs:
7979
uses: actions/checkout@v2
8080

8181
- name: Download artifacts (Linux x64)
82-
uses: actions/download-artifact@v2
82+
uses: actions/download-artifact@v4
8383
with:
8484
name: ubuntu-latest-x64-artifact
8585
path: ./artifacts
8686

8787
- name: Download artifacts (Linux ARM64)
88-
uses: actions/download-artifact@v2
88+
uses: actions/download-artifact@v4
8989
with:
9090
name: ubuntu-latest-arm64-artifact
9191
path: ./artifacts
9292

9393
- name: Download artifacts (Windows x64)
94-
uses: actions/download-artifact@v2
94+
uses: actions/download-artifact@v4
9595
with:
9696
name: windows-latest-x64-artifact
9797
path: ./artifacts
9898

9999
- name: Download artifacts (Windows ARM64)
100-
uses: actions/download-artifact@v2
100+
uses: actions/download-artifact@v4
101101
with:
102102
name: windows-latest-arm64-artifact
103103
path: ./artifacts
104104

105105
- name: Download artifacts (macOS x64)
106-
uses: actions/download-artifact@v2
106+
uses: actions/download-artifact@v4
107107
with:
108108
name: macos-latest-x64-artifact
109109
path: ./artifacts
110110

111111
- name: Download artifacts (macOS ARM64)
112-
uses: actions/download-artifact@v2
112+
uses: actions/download-artifact@v4
113113
with:
114114
name: macos-latest-arm64-artifact
115115
path: ./artifacts

0 commit comments

Comments
 (0)