build(deps): bump actions/checkout from 4.2.2 to 6.0.0 #60
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Rust PR | |
| on: pull_request | |
| env: | |
| CARGO_INCREMENTAL: 0 | |
| CARGO_NET_RETRY: 10 | |
| RUSTFLAGS: "-D warnings -A deprecated" | |
| RUSTUP_MAX_RETRIES: 10 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| timeout-minutes: 5 | |
| runs-on: ubuntu-latest | |
| container: docker://ghcr.io/linkerd/dev:v45-rust | |
| steps: | |
| - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 | |
| - uses: Swatinem/rust-cache@f0deed1e0edfc6a9be95417288c0e1099b1eeec3 | |
| - run: cargo fetch | |
| - run: cargo fmt -- --check | |
| - run: cargo deny --all-features check bans licenses sources | |
| - run: cargo deny --all-features check advisories | |
| continue-on-error: true | |
| - run: cargo clippy --all-targets --all-features --locked | |
| - run: cargo nextest run --no-run | |
| - run: cargo nextest run |