Skip to content

Commit

Permalink
feat: upgrade download-artifact action to v4 in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Elagoht committed Dec 21, 2024
1 parent f8ea052 commit 016c017
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,37 +79,37 @@ jobs:
uses: actions/checkout@v2

- name: Download artifacts (Linux x64)
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: ubuntu-latest-x64-artifact
path: ./artifacts

- name: Download artifacts (Linux ARM64)
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: ubuntu-latest-arm64-artifact
path: ./artifacts

- name: Download artifacts (Windows x64)
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: windows-latest-x64-artifact
path: ./artifacts

- name: Download artifacts (Windows ARM64)
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: windows-latest-arm64-artifact
path: ./artifacts

- name: Download artifacts (macOS x64)
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: macos-latest-x64-artifact
path: ./artifacts

- name: Download artifacts (macOS ARM64)
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: macos-latest-arm64-artifact
path: ./artifacts
Expand Down

0 comments on commit 016c017

Please sign in to comment.