diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index cab2d18de6..a57e6a4ce5 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -31,6 +31,6 @@ jobs: components: ${{ matrix.components || '' }} targets: ${{ matrix.targets || '' }} - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 - name: Check Formatting run: cargo fmt -- --check diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 512a3e4dbd..c270016088 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -42,7 +42,7 @@ jobs: components: ${{ matrix.components || '' }} targets: ${{ matrix.targets || '' }} - name: Checkout rusty-hermit - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: repository: 'hermitcore/rusty-hermit' ref: 'master' diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2910e0fbe0..efc5f5637f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2 with: submodules: true - name: Install nightly toolchain diff --git a/.github/workflows/security_audit.yml b/.github/workflows/security_audit.yml index 11d6f208ef..326df2e300 100644 --- a/.github/workflows/security_audit.yml +++ b/.github/workflows/security_audit.yml @@ -7,7 +7,7 @@ jobs: security_audit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2 - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}