From 991eb26ed70d3c875a4538c8f96b5285522bed1d Mon Sep 17 00:00:00 2001 From: David Bauer Date: Fri, 8 May 2020 18:22:00 +0200 Subject: [PATCH] github: use v2 for checkout action v1 does not support the path option, thus the repository is always cloned to the workspace root. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0646373..8833fda 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: name: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 with: path: dawn - name: Install dependencies