Skip to content

Commit

Permalink
Update actions/checkout in GitHub Actions workflows to v3 (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel authored Feb 7, 2023
1 parent 4e3a5a6 commit 7cd5133
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
rust: [stable, beta, nightly]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Rust
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Run Tests
Expand All @@ -39,15 +39,15 @@ jobs:
matrix:
version: [1.38.0]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Rust
run: rustup update ${{ matrix.version }} && rustup default ${{ matrix.version }}
- run: cargo build --all --all-features --all-targets

miri:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Rust
run: rustup toolchain install nightly --component miri && rustup default nightly
- run: cargo miri test
Expand Down

0 comments on commit 7cd5133

Please sign in to comment.