Skip to content

Update actions/checkout action to v5.0.1 #1847

Update actions/checkout action to v5.0.1

Update actions/checkout action to v5.0.1 #1847

Workflow file for this run

name: Audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:
branches:
- main
- master
schedule:
- cron: '12 13 2 * *'
permissions:
contents: read
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Install cargo audit
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
with:
command: install
args: --force cargo-audit
- name: Audit server
run: cargo audit --deny warnings
- name: Audit test client
run: cargo audit --deny warnings
working-directory: misc/test-client