Skip to content

GitHub CI: Switch from x86-64 to Apple silicon on macOS #507

GitHub CI: Switch from x86-64 to Apple silicon on macOS

GitHub CI: Switch from x86-64 to Apple silicon on macOS #507

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (C) 2018-2023 Uwe Klotz <uwedotklotzatgmaildotcom> et al.
# 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"
- "**/Cargo.lock"
schedule:
# Weekly, i.e. on Sunday at 04:30 UTC
- cron: "30 4 * * 0"
workflow_dispatch:
jobs:
security-audit:
runs-on: ubuntu-latest
steps:
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install cargo-audit
run: cargo install cargo-audit
# Checkout the repository before the remaining steps that depend on it.
# All preceding steps are independent of the repository contents.
- uses: actions/checkout@v3
- name: Cache Rust toolchain and build artifacts
uses: Swatinem/rust-cache@v2
- name: Run security audit
run: cargo audit --deny unsound --deny yanked