From d1f7e3f57ac8e1afbdf7d57ec29830e51b4ab708 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Thu, 9 Apr 2020 12:26:17 -0400 Subject: [PATCH] CI: github actions: checkout@v2 update checkout action to @v2. This should avoid errors when rerunning a job about "reference is not a tree". --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6cbf077e1a..8e74694e59 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ jobs: runs-on: [ubuntu-18.04] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: setup run: | ./contrib/utilities/download_clang_format @@ -38,7 +38,7 @@ jobs: runs-on: [macos-latest] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: setup run: | ./contrib/utilities/download_clang_format @@ -67,7 +67,7 @@ jobs: runs-on: [macos-latest] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: setup run: | brew install openmpi -- 2.39.5