From fe4b15c8b0211bde0a46a61cfd1ba45f1db5065e Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 20 Oct 2021 10:45:53 -0500 Subject: [PATCH] Checkout submodules in cargo audit CI (#3463) This should help address the failure that happened last night. https://github.com/bytecodealliance/wasmtime/actions/runs/1361422923 --- .github/workflows/cargo-audit.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cargo-audit.yml b/.github/workflows/cargo-audit.yml index 69e1381b5b..4c24d366c8 100644 --- a/.github/workflows/cargo-audit.yml +++ b/.github/workflows/cargo-audit.yml @@ -6,7 +6,9 @@ jobs: security_audit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 + with: + submodules: true - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}