From 8ff9d3327e2fca92fde61147db5620a4f66310ed 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 b152435..95bfa1d 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