From 8b3266db92432a1bd97ff2c40b21e0044fde4ed0 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 3 Dec 2019 11:15:26 -0600 Subject: [PATCH] github actions: pin checkout action to v1 (#145) master now contains a new v2 beta version of this action that no longer supports "submodules". We can update to v2 later once it stabilizes. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bac948c84..e25ddaa77 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] steps: - - uses: actions/checkout@master + - uses: actions/checkout@v1 with: submodules: true - name: Install Rust (rustup) @@ -32,7 +32,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v1 with: submodules: true - name: Install Rust