Skip to content

Commit 58c43bd

Browse files
update upload-artifact to v4
1 parent 67797bf commit 58c43bd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
runs-on: windows-latest
1010

1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v4
1313

1414
- name: Build release binary
1515
run: cargo build --verbose --locked --release
1616

1717
- name: Upload artifacts
18-
uses: actions/upload-artifact@v1
18+
uses: actions/upload-artifact@v4
1919
with:
2020
name: tarmac-win64
2121
path: target/release/tarmac.exe
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: macos-latest
2525

2626
steps:
27-
- uses: actions/checkout@v1
27+
- uses: actions/checkout@v4
2828

2929
- name: Install Rust
3030
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
@@ -35,7 +35,7 @@ jobs:
3535
cargo build --verbose --locked --release
3636
3737
- name: Upload artifacts
38-
uses: actions/upload-artifact@v1
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: tarmac-macos
4141
path: target/release/tarmac
@@ -44,15 +44,15 @@ jobs:
4444
runs-on: ubuntu-latest
4545

4646
steps:
47-
- uses: actions/checkout@v1
47+
- uses: actions/checkout@v4
4848

4949
- name: Build
5050
run: cargo build --locked --verbose --release
5151
env:
5252
OPENSSL_STATIC: 1
5353

5454
- name: Upload artifacts
55-
uses: actions/upload-artifact@v1
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: tarmac-linux
5858
path: target/release/tarmac

0 commit comments

Comments
 (0)