From 3924bbd79e803b98d425a84fb54ed6dcd3379569 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Wed, 11 Dec 2019 11:52:52 -0600 Subject: [PATCH] github actions: pin checkout action to v1 (#85) 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 31228c4..839ee58 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: # llvm 9 build is broken on windows for now. Re-enable this when it is fixed: # - windows-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v1 with: submodules: true - run: |