Skip to content

Upgrade to Rust v1.82 #191

Upgrade to Rust v1.82

Upgrade to Rust v1.82 #191

# SPDX-FileCopyrightText: Copyright (C) 2018-2024 Uwe Klotz <uwedotklotzatgmaildotcom> et al.
# SPDX-License-Identifier: CC0-1.0
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
# Same as file name
name: dependency-audit
permissions:
contents: read
on:
push:
paths:
- "**/Cargo.toml"
schedule:
# Weekly, i.e. on Sunday at 13:37 UTC
- cron: "37 13 * * 0"
workflow_dispatch:
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate Cargo.lock
run: cargo generate-lockfile
- uses: EmbarkStudios/cargo-deny-action@v2
with:
command: check
arguments: >-
--all-features
--locked