Skip to content

Bump version to 0.8.2 and update changelog. #63

Bump version to 0.8.2 and update changelog.

Bump version to 0.8.2 and update changelog. #63

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2017-2023 slowtec GmbH <post@slowtec.de>
# SPDX-License-Identifier: CC0-1.0
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: security-audit
permissions:
contents: read
on:
push:
paths:
- "**/Cargo.toml"
workflow_dispatch:
# schedule:
# - cron: '0 0 * * *'
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- name: Install cargo-audit
run: cargo install cargo-audit
- uses: actions/checkout@v3
- name: Cache Rust toolchain and build artifacts
uses: Swatinem/rust-cache@v2
with:
# Distinguished by the action name to avoid sharing across different actions!
shared-key: "security-audit"
- name: Run security audit
run: cargo audit --deny unsound --deny yanked