From e902e5160d7a877e5623199611f39d98e1a0b9fd Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 29 Jul 2022 00:25:11 +0900 Subject: [PATCH] Update actions/checkout action to v3 (#109) --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f1ecbae..5dbef16 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install stable toolchain uses: actions-rs/toolchain@v1 @@ -42,7 +42,7 @@ jobs: with: toolchain: ${{ matrix.rust }} profile: minimal - - uses: actions/checkout@master + - uses: actions/checkout@v3 - name: Test run: cargo test --all @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout sources - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install stable toolchain uses: actions-rs/toolchain@v1