Skip to content

Commit

Permalink
actions/checkout@v2 -> v4 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
goffrie authored Apr 18, 2024
1 parent 054b0d4 commit 458a590
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --all-targets
- name: Run tests in release mode
Expand All @@ -19,7 +19,7 @@ jobs:
build-i686:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install cross
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Run tests (i686)
Expand All @@ -30,7 +30,7 @@ jobs:
build-aarch64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install cross
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Run tests (aarch64)
Expand All @@ -41,6 +41,6 @@ jobs:
fuzzer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build fuzzer
run: cd fuzz; cargo test

0 comments on commit 458a590

Please sign in to comment.