From 260f67a9aaa1db441ed33fb39135d06430c14e4b Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Thu, 8 Oct 2020 16:43:38 +0200 Subject: [PATCH] Bump GitHub Actions runners --- .github/workflows/nodejs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 29ea138cf5e8..965de70b2f86 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -18,14 +18,14 @@ jobs: node-version: [8.x, 10.x, 12.x, 14.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v1.4.4 with: node-version: ${{ matrix.node-version }} - name: Use cached node_modules id: cache - uses: actions/cache@v1 + uses: actions/cache@v2.1.1 with: path: node_modules key: nodeModules-${{ hashFiles('**/yarn.lock') }}-${{ matrix.node-version }}