From 016f796299312c8b32b01408fd03b6df50a4b0fb Mon Sep 17 00:00:00 2001 From: Aydin Mercan Date: Sat, 3 Sep 2022 22:41:52 +0300 Subject: [PATCH] ci/actions: fix typo & use the original action * Apparently GitHub Actions doesn't work like I expected it would with job forks. Revert to the original. * Fix the `actions/checkout` type. --- .github/workflows/audit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 4c6a1b3..dd29f50 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -10,8 +10,8 @@ jobs: audit: runs-on: ubuntu-latest steps: - - uses: action/checkout@v1 - - uses: rustsec/audit-check@v1 + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}