Skip to content

deps(rust): update syn requirement from 0.15 to 2.0 #2

deps(rust): update syn requirement from 0.15 to 2.0

deps(rust): update syn requirement from 0.15 to 2.0 #2

Workflow file for this run

---
name: Audit
# Trigger the workflow on push or pull request
"on":
pull_request:
branches:
- master
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.4
with:
version: "v0.4.2"
- name: Install dependencies
run: |
cargo install cargo-audit
- name: "Run audit"
run: cargo audit
continue-on-error: false