From a1916250f9b5f9cea05f0ca79985b78a46636233 Mon Sep 17 00:00:00 2001 From: Ahmed Tarek Date: Mon, 28 Aug 2023 14:35:57 +0300 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20node=2016?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c50cd82..0fece04 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,21 +9,21 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ref: ${{ github.head_ref }} - name: Get yarn cache id: yarn-cache run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v1 + - uses: actions/cache@v3 with: path: ${{ steps.yarn-cache.outputs.dir }} - key: ubuntu-latest-node-12.x-yarn-${{ hashFiles('**/yarn.lock') }} + key: ubuntu-latest-node-16.x-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | - ubuntu-latest-node-12.x-yarn- - - uses: actions/setup-node@v1 + ubuntu-latest-node-16.x-yarn- + - uses: actions/setup-node@v3 with: - node-version: 12.x + node-version: 16.x registry-url: https://registry.npmjs.org/ - name: Install run: yarn install