Skip to content

Bump keccak from 0.1.5 to 0.1.6 #1867

Bump keccak from 0.1.5 to 0.1.6

Bump keccak from 0.1.5 to 0.1.6 #1867

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- 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