From 5336c53f92190b4f971084706191aeb991e14684 Mon Sep 17 00:00:00 2001 From: Vatsal Joshi Date: Sun, 19 Jul 2020 14:48:41 +0530 Subject: [PATCH] use actions/checkout v1, v2 seems to be having issue cheching out the right commit - ref https://github.com/actions/checkout/issues/237 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6be66eb..9c0249c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: node-version: [10.x, 12.x, 14.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: