Skip to content

Commit

Permalink
Update actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
jareddlc committed Sep 13, 2024
1 parent a600402 commit a85f11c
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build
run: cargo build --release
Expand All @@ -22,7 +22,7 @@ jobs:
run: mv target/release/gut target/release/gut-linux

- name: Upload Linux Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: linux-binary
path: target/release/gut-linux
Expand All @@ -32,13 +32,13 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build
run: cargo build --release

- name: Upload Windows Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: windows-binary
path: target\release\gut.exe
Expand All @@ -48,7 +48,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build
run: cargo build --release
Expand All @@ -57,7 +57,7 @@ jobs:
run: mv target/release/gut target/release/gut-macos-x86

- name: Upload MacOS Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: macos-x86-binary
path: target/release/gut-macos-x86
Expand All @@ -67,7 +67,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build
run: cargo build --release
Expand All @@ -76,7 +76,7 @@ jobs:
run: mv target/release/gut target/release/gut-macos-aarch64

- name: Upload MacOS Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: macos-aarch64-binary
path: target/release/gut-macos-aarch64
Expand All @@ -87,19 +87,19 @@ jobs:

steps:
- name: Download Linux Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: linux-binary
- name: Download Windows Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: windows-binary
- name: Download MacOS (x86) Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: macos-x86-binary
- name: Download MacOS (Arm64) Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: macos-aarch64-binary

Expand Down

0 comments on commit a85f11c

Please sign in to comment.