Skip to content

Bump rustls from 0.21.10 to 0.21.11 #6690

Bump rustls from 0.21.10 to 0.21.11

Bump rustls from 0.21.10 to 0.21.11 #6690

Workflow file for this run

name: Dozer CI
on:
workflow_dispatch:
pull_request:
branches: [main]
merge_group:
env:
CARGO_TERM_COLOR: always
concurrency:
group: ci/${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
timeout-minutes: 60
runs-on:
labels: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install minimal stable with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Rust cache
uses: swatinem/rust-cache@v2
- name: Clippy
run: |
cargo clippy --workspace --all-features --all-targets -- -D warnings
- name: Lint
run: |
cargo fmt -- --check
- name: Cargo Deny
uses: EmbarkStudios/cargo-deny-action@v1