From cf140ac99564c7762dd36a87cf4acb44858d076c Mon Sep 17 00:00:00 2001 From: CAD97 Date: Fri, 6 Mar 2020 20:32:03 -0500 Subject: [PATCH] Use actions/checkout@v2 --- .github/workflows/ci.yaml | 6 +++--- .github/workflows/release.yaml | 4 ++-- .github/workflows/rustdoc.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6330159568a..ee74d74869e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v2 - run: cargo install cargo-audit - run: cargo audit @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v2 # We need to disable the existing toolchain to avoid updating rust-docs # which takes a long time. The fastest way to do this is to rename the @@ -94,7 +94,7 @@ jobs: CC: gcc-4.9 steps: - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Install Nodejs uses: actions/setup-node@v1 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d58be0fd77a..bb0b7ab31eb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v2 # We need to disable the existing toolchain to avoid updating rust-docs # which takes a long time. The fastest way to do this is to rename the @@ -77,7 +77,7 @@ jobs: - run: 'echo "TAG: $TAG"' - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v2 - uses: actions/download-artifact@v1 with: diff --git a/.github/workflows/rustdoc.yaml b/.github/workflows/rustdoc.yaml index e75e926954f..c84ce5d4891 100644 --- a/.github/workflows/rustdoc.yaml +++ b/.github/workflows/rustdoc.yaml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v1 + uses: actions/checkout@v2 - name: Install Rust toolchain uses: actions-rs/toolchain@v1 -- 2.44.0