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

fix(deps): update actions/download-artifact action to v4 #165

Merged
merged 1 commit into from
Dec 15, 2023
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
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
uses: ./.github/actions/toolchain

- name: Get GUI artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: gui-artifacts
path: spis-gui/dist
Expand Down Expand Up @@ -87,19 +87,19 @@ jobs:
mkdir release

- name: Get x86_64 server artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: spis-server-x86_64-unknown-linux-gnu
path: release

- name: Get armv7 server artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: spis-server-armv7-unknown-linux-gnueabihf
path: release

- name: Get aarch64 server artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: spis-server-aarch64-unknown-linux-gnu
path: release
Expand Down