From 11bfbfb4d119165a1c1b4724ec2eb0efdc66307d Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Thu, 28 May 2020 06:59:56 -0700 Subject: [PATCH] [infer][PR] Update deploy.yml Summary: Pull Request resolved: https://github.com/facebook/infer/pull/1269 Reviewed By: ezgicicek Differential Revision: D21763806 Pulled By: jvillard fbshipit-source-id: b270292f1 --- .github/workflows/deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index bb7437927..7bb9adf16 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,14 +15,14 @@ jobs: env: working-directory: website - node-version: 12.x + node-version: 14.x steps: - name: Checkout code - uses: actions/checkout@v2.0.0 + uses: actions/checkout@v2 - name: Use Node.js ${{ env.node-version }} - uses: actions/setup-node@v1.4.0 + uses: actions/setup-node@v1 with: node-version: ${{ env.node-version }} @@ -31,7 +31,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Restore yarn cache - uses: actions/cache@v1.1.2 + uses: actions/cache@v2 with: path: ${{ steps.yarn.outputs.dir }} key: ${{ runner.os }}-yarn-${{ hashFiles('website/yarn.lock') }}