Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/download-artifact from 3 to 4 #495

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,37 +224,37 @@ jobs:
run: make environment

- name: Get Linux x64 Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: linux-x64
path: build/libs/Linux/x64/Release

- name: Get MacCatalyst arm64 Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: maccatalyst-arm64
path: build/libs/MacCatalyst/arm64/Release

- name: Get MacOS arm64 Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: osx-arm64
path: build/libs/Darwin/arm64/Release

- name: Get MacOS x64 Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: osx-x64
path: build/libs/Darwin/x64/Release

- name: Get Windows x86 Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: win-x86
path: build/libs/Windows/x86/Release

- name: Get Windows x64 Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: win-x64
path: build/libs/Windows/x64/Release
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
with:
node-version: 16
- name: Get WASM Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: wasm
path: bindings/typescript/src/wasm
Expand Down Expand Up @@ -344,13 +344,13 @@ jobs:
run: make environment-ui

# - name: Get MacCatalyst arm64 Artifacts
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: maccatalyst-arm64
# path: build/libs/MacCatalyst/arm64/Release

- name: Get Windows x64 Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: win-x64
path: build/libs/Windows/x64/Release
Expand Down