Skip to content

Commit

Permalink
Update to actions/checkout@v4 from v3.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys authored and teoxoy committed Jan 2, 2024
1 parent a26b838 commit 0bf78f3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Check MSRV and minimal-versions
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install tools
uses: taiki-e/install-action@v2
Expand All @@ -43,21 +43,21 @@ jobs:
name: Check format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: cargo fmt --check --all

clippy:
name: Check clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: cargo clippy --all-targets --workspace --all-features -- -D warnings

doc_tests:
name: Run doc tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: cargo test --doc --workspace --features mint,glam

docs:
Expand All @@ -66,7 +66,7 @@ jobs:
env:
RUSTDOCFLAGS: --cfg docs
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install nightly toolchain
run: rustup toolchain install $NIGHTLY --no-self-update --profile=minimal
Expand All @@ -77,7 +77,7 @@ jobs:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install tools
uses: taiki-e/install-action@v2
Expand Down

0 comments on commit 0bf78f3

Please sign in to comment.