Skip to content

Commit b576486

Browse files
committed
update download-artifact
1 parent 562f366 commit b576486

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,20 @@ jobs:
2929
- name: Checkout
3030
uses: actions/checkout@v3
3131
- name: Build binary
32-
uses: houseabsolute/actions-rust-cross@v0
32+
uses: houseabsolute/actions-rust-cross@v1
3333
with:
3434
command: ${{ matrix.platform.command }}
3535
target: ${{ matrix.platform.target }}
3636
args: "--locked --release"
37+
cross-version: "v0.2.5"
3738
- name: Package as archive
3839
shell: bash
3940
run: |
4041
cd target/${{ matrix.platform.target }}/release
4142
tar czvf ../../../${{ matrix.platform.name }} ${{ matrix.platform.bin }}
4243
cd -
4344
- name: Upload package as artifact
44-
uses: actions/upload-artifact@v3
45+
uses: actions/upload-artifact@v4
4546
with:
4647
name: binaries
4748
path: ${{ matrix.platform.name }}
@@ -52,7 +53,7 @@ jobs:
5253
runs-on: ubuntu-latest
5354
steps:
5455
- name: Download artifacts
55-
uses: actions/download-artifact@v3
56+
uses: actions/download-artifact@v4
5657
with:
5758
name: binaries
5859
path: ./binaries

0 commit comments

Comments
 (0)