Skip to content

Commit

Permalink
ci: naively update all actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JerwuQu committed Jan 31, 2025
1 parent df7f2cb commit 789aa39
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,28 +13,28 @@ jobs:
runs-on: ${{ matrix.platform.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
key: ${{ matrix.platform.target }}-${{ matrix.platform.os }}
path: |
~/.cargo
target
- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
uses: houseabsolute/actions-rust-cross@v1
with:
command: build
target: ${{ matrix.platform.target }}
args: "--locked --release"
strip: true
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform.target }}
path: target/${{ matrix.platform.target }}/release/${{ matrix.platform.cli }}
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.platform.target }}
path: target/${{ matrix.platform.target }}/release/${{ matrix.platform.app }}

0 comments on commit 789aa39

Please sign in to comment.