From 5b8209b9643b41d3f28410586d254b7adba22b29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Thu, 26 Dec 2024 09:36:49 +0100 Subject: [PATCH] fix: remove audit workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- .github/workflows/audit.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/audit.yml diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml deleted file mode 100644 index cd1d55211..000000000 --- a/.github/workflows/audit.yml +++ /dev/null @@ -1,24 +0,0 @@ -# SPDX-FileCopyrightText: 2024 Christina Sørensen -# SPDX-License-Identifier: EUPL-1.2 -# -# SPDX-FileCopyrightText: 2023-2024 Christina Sørensen, eza contributors -# SPDX-FileCopyrightText: 2014 Benjamin Sago -# SPDX-License-Identifier: MIT -name: Security audit -on: - schedule: - - cron: '0 0 * * *' - push: - paths: - - '.github/workflows/audit.yml' - - '**/Cargo.toml' - - '**/Cargo.lock' - - 'deny.toml' -jobs: - security_audit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: taiki-e/install-action@cargo-deny - - name: Scan for vulnerabilities - run: cargo deny check