From c602779e266ab11cf6e428150d9cd3272bc52261 Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 30 Apr 2024 16:20:49 +0300 Subject: [PATCH] actions fix --- .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 c03799d..dda7472 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,11 +13,11 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - name: Use Node.js 14.x + - uses: actions/checkout@v3 + - name: Use Node.js 20.x uses: actions/setup-node@v2 with: - node-version: 14.x + node-version: 20.x - run: npm ci - run: npm run build --if-present @@ -28,7 +28,7 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Stage to PROD if: endsWith(github.ref, '/master') run: |