From 919b83d29cee15ed11c0871bf68953aa7bce1b6f Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Thu, 20 Jul 2023 11:25:29 -0400 Subject: [PATCH] Attempt to fix permissions issue --- .github/workflows/audit.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 2fdf7db..19417bb 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -1,9 +1,20 @@ name: Security audit + on: push: paths: - '**/Cargo.toml' - '**/Cargo.lock' + - '.github/workflows/audit.yml' + schedule: + - cron: '0 0 * * *' + +permissions: + issues: write + checks: write + pull-requests: read + contents: read + jobs: security_audit: runs-on: ubuntu-latest