Skip to content

chore(deps): bump rcgen from 0.13.2 to 0.14.8 #37

chore(deps): bump rcgen from 0.13.2 to 0.14.8

chore(deps): bump rcgen from 0.13.2 to 0.14.8 #37

Workflow file for this run

name: Security Audit
on:
schedule:
# Weekly on Monday at 06:00 UTC
- cron: "0 6 * * 1"
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
jobs:
cargo-audit:
name: Cargo Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-audit
run: cargo install cargo-audit --locked
- name: Run cargo audit
run: cargo audit
# Informational on PRs until transitive advisories are resolved (quinn-proto, rsa).
continue-on-error: ${{ github.event_name == 'pull_request' }}
public-api-label-gate:
name: Public API Label Gate
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Enforce breaking/feature label on snapshot changes
env:
BASE_SHA: ${{ github.event.pull_request.base.sha }}
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
PR_LABELS: ${{ join(github.event.pull_request.labels.*.name, ',') }}
GITHUB_EVENT_PATH: ${{ github.event_path }}
run: bash .github/scripts/public_api_label_gate.sh