Skip to content

Bump serde from 1.0.197 to 1.0.200 in /spec-runner in the cargo-deps group #4743

Bump serde from 1.0.197 to 1.0.200 in /spec-runner in the cargo-deps group

Bump serde from 1.0.197 to 1.0.200 in /spec-runner in the cargo-deps group #4743

Workflow file for this run

---
name: Audit
"on":
push:
branches:
- trunk
pull_request:
branches:
- trunk
schedule:
- cron: "0 0 * * TUE"
jobs:
ruby:
name: Audit Ruby Dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.2
- name: Install Ruby toolchain
uses: ruby/setup-ruby@5f19ec79cedfadb78ab837f95b87734d0003c899 # v1.173.0
with:
ruby-version: ".ruby-version"
bundler-cache: true
- name: bundler-audit
run: bundle exec bundle-audit check --update
rust:
name: Audit Rust Dependencies
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:
- name: Checkout repository
uses: actions/checkout@v4.1.2
- name: Install Rust toolchain
uses: artichoke/setup-rust/audit@v1.11.0
- name: Generate Cargo.lock
run: |
if [[ ! -f "Cargo.lock" ]]; then
cargo generate-lockfile --verbose
fi
- uses: EmbarkStudios/cargo-deny-action@b01e7a8cfb1f496c52d77361e84c1840d8246393 # v1.6.2
with:
arguments: --locked --all-features
command: check ${{ matrix.checks }}
command-arguments: --show-stats