Skip to content

Commit

Permalink
CI: Update actions/checkout to v4 (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnestler authored May 20, 2024
1 parent 80c7e7d commit e4eef06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,22 @@ jobs:
runs-on: ubuntu-22.04
container: rust:1.60
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: cargo build
- run: cargo test

lint:
runs-on: ubuntu-22.04
container: rust:1.78
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup component add clippy
- run: cargo clippy --all-targets --all-features -- -D warnings

fmt:
runs-on: ubuntu-22.04
container: rust:1.78
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: rustup component add rustfmt
- run: cargo fmt -- --check

0 comments on commit e4eef06

Please sign in to comment.