Skip to content

Bump actions/checkout from 4.1.2 to 4.1.5 #255

Bump actions/checkout from 4.1.2 to 4.1.5

Bump actions/checkout from 4.1.2 to 4.1.5 #255

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:v42-rust
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- 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@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b
- uses: EmbarkStudios/cargo-deny-action@b01e7a8cfb1f496c52d77361e84c1840d8246393
with:
command: check ${{ matrix.checks }}