Update github actions/checkout to v4 (#114)

This commit is contained in:
Igor Katson 2024-04-05 11:13:41 +01:00 committed by GitHub
parent 2fb3da9dc5
commit d7380217f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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