Skip to content

Bump diesel from 2.2.2 to 2.2.3 #505

Bump diesel from 2.2.2 to 2.2.3

Bump diesel from 2.2.2 to 2.2.3 #505

Workflow file for this run

name: Audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:
branches:
- main
- master
schedule:
- cron: '12 13 2 * *'
jobs:
audit:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Audit server
run: cargo audit --deny warnings --ignore RUSTSEC-2022-0071 # includes exception for unmaintained rusoto crate, should be resolved by #134
- name: Audit test client
run: cargo audit --deny warnings
working-directory: misc/test-client