From 799fd2e8574eb23e3560b0d16d30fefee41b75fa Mon Sep 17 00:00:00 2001 From: DanGould Date: Sat, 10 Aug 2024 15:09:10 -0400 Subject: [PATCH] Remove unrunnable security_audit "Due to token permissions, this Action WILL NOT be able to create Checks for Pull Requests from the forked repositories, see actions-rs/clippy-check#2 for details. As a fallback this Action will output all found advisories to the stdout. It is expected that this behavior will be fixed later by GitHub." --- .github/workflows/security_audit.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/security_audit.yml diff --git a/.github/workflows/security_audit.yml b/.github/workflows/security_audit.yml deleted file mode 100644 index 7a2cfe3..0000000 --- a/.github/workflows/security_audit.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Security Audit -on: - pull_request: - paths: - - '**/Cargo.toml' - push: - paths: - - '**/Cargo.toml' -jobs: - security_audit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions-rs/audit-check@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }}