From 5dfaed91f11c381f671529412e07e2687aa01874 Mon Sep 17 00:00:00 2001 From: Matthieu MOREL Date: Thu, 29 Jul 2021 12:04:04 +0200 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1f71bd351..3bd832749 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,10 +9,10 @@ jobs: matrix: node-version: [16.x] steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2 - name: Setup Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2.3.0 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} @@ -20,7 +20,7 @@ jobs: run: npm i yarn --global - name: Cache Node Modules - uses: actions/cache@v2.1.6 + uses: actions/cache@v2 with: path: .cache key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }} @@ -36,7 +36,7 @@ jobs: run: yarn build - name: Upload Build as Artifact - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v2 with: name: dist path: dist @@ -61,4 +61,4 @@ jobs: # uses: coverallsapp/github-action@master # with: # github-token: ${{ secrets.GITHUB_TOKEN }} - # parallel-finished: true \ No newline at end of file + # parallel-finished: true