From e574ee0e4ab38b0f1a0148e6560fc978bd4d6c55 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Sun, 18 Oct 2020 01:09:09 +0900 Subject: [PATCH] Use `actions/checkout@v2` Note that the repository's default branch is now `main`, not `master`. And this should be safer to avoid breaking change. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3fd8518..cf0fafe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - name: Update rustup run: rustup self update - name: Install Rust