diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2023-01-20 13:35:31 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2023-01-20 13:35:31 +0100 |
| commit | 062815df83e04d0560afb52b02a8495102e124f6 (patch) | |
| tree | 19c93160ba3fa753280e3b1e2fed04cbb894b74b /.github | |
| parent | 04934a0de9c780e58acd1d012bcbbda215cc7846 (diff) | |
| parent | a545415fe466b34230ae695f19a73a0aa68beef3 (diff) | |
| download | mullvadvpn-062815df83e04d0560afb52b02a8495102e124f6.tar.xz mullvadvpn-062815df83e04d0560afb52b02a8495102e124f6.zip | |
Merge branch 'audit-cargo-deps-not-on-code-change'
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/cargo-audit.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/cargo-audit.yml b/.github/workflows/cargo-audit.yml index f908b03290..d7531c53af 100644 --- a/.github/workflows/cargo-audit.yml +++ b/.github/workflows/cargo-audit.yml @@ -4,15 +4,21 @@ on: pull_request: paths: - .github/workflows/cargo-audit.yml - - '**/*.rs' - Cargo.lock + schedule: + # At 06:20 UTC every day. + # Notifications for scheduled workflows are sent to the user who last modified the cron + # syntax in the workflow file. If you update this you must have notifications for + # Github Actions enabled, so these don't go unnoticed. + # https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/notifications-for-workflow-runs + - cron: '20 6 * * *' workflow_dispatch: jobs: audit: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Protoc uses: arduino/setup-protoc@v1 |
