From bebf3f8c4a06e9c675f3e6996a2f1cbc00f18e60 Mon Sep 17 00:00:00 2001 From: Ryan Ghods Date: Sun, 12 Jul 2020 09:45:47 -0700 Subject: [PATCH] update actions/checkout to v2 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 075c790..00a3077 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - run: npm install - run: npm run test @@ -31,7 +31,7 @@ jobs: with: node-version: 12.x - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - run: npm install - run: npm run coverage