From 06aafd3c5b77c509bfeaa9a8da44e21297c4d7cd Mon Sep 17 00:00:00 2001 From: Andrew Straw Date: Fri, 12 May 2023 10:36:50 +0200 Subject: [PATCH] CI use rustsec/audit-check for node16 Node12 is deprecated from Github's CI and actions-rs/audit-check seems unmaintained. The works around https://github.com/actions-rs/audit-check/issues/227 --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8bb5f66..f531042 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -223,7 +223,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Audit - uses: actions-rs/audit-check@v1 + uses: rustsec/audit-check@v1.4.1 with: token: ${{ secrets.GITHUB_TOKEN }}