Update github actions/checkout to v4 (#114)
This commit is contained in:
parent
2fb3da9dc5
commit
d7380217f6
2 changed files with 4 additions and 4 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
|
@ -12,7 +12,7 @@ jobs:
|
|||
release-windows:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
- name: install Tauri
|
||||
run: cargo install tauri-cli --profile dev
|
||||
- name: npm install (desktop)
|
||||
|
|
@ -42,7 +42,7 @@ jobs:
|
|||
cross-compile-on-macos:
|
||||
runs-on: macos-11
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: install Tauri
|
||||
run: cargo install tauri-cli --profile dev
|
||||
|
|
|
|||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
|
@ -19,14 +19,14 @@ jobs:
|
|||
- name: rustup toolchain install ${{ matrix.rust_version }}
|
||||
run: |
|
||||
rustup toolchain install ${{ matrix.rust_version }}
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
- run: rustup override set ${{ matrix.rust_version }}
|
||||
- name: cargo check
|
||||
run: cargo check
|
||||
test:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
- run: rustup toolchain install stable --profile minimal
|
||||
- uses: Swatinem/rust-cache@v2
|
||||
- name: Run tests
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue