Skip to content

Bump actions/checkout from 3.5.0 to 3.5.2 #161

Bump actions/checkout from 3.5.0 to 3.5.2

Bump actions/checkout from 3.5.0 to 3.5.2 #161

Workflow file for this run

name: Rust
on:
pull_request:
paths:
- .github/workflows/rust.yml
- '**/*.rs'
- '**/Cargo.toml'
- Cargo.lock
- deny.toml
- justfile
jobs:
check:
timeout-minutes: 5
runs-on: ubuntu-latest
container: ghcr.io/linkerd/dev:v39-rust
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- run: just rs-fetch
- run: just rs-fmt-check
- run: just rs-clippy
- run: just rs-test-build
- run: just rs-test
audit:
timeout-minutes: 5
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
# Prevent sudden announcement of a new advisory from failing Ci.
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
- uses: EmbarkStudios/cargo-deny-action@e0a440755b184aa50374330fa75cca0f84fcb59a
with:
command: check ${{ matrix.checks }}