From 077ff3b71da50e7847bff954a40410a0eb7244aa Mon Sep 17 00:00:00 2001 From: Marcell Huszti Date: Fri, 21 Jun 2024 12:25:41 +0200 Subject: [PATCH] chore(workflow): update steps in release and master --- .github/workflows/master-branch.yml | 6 +++--- .github/workflows/release.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/master-branch.yml b/.github/workflows/master-branch.yml index 92fd04c..874aa12 100644 --- a/.github/workflows/master-branch.yml +++ b/.github/workflows/master-branch.yml @@ -10,11 +10,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Git checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: - node-version: '14' + node-version: '20' registry-url: 'https://registry.npmjs.org' - name: Install NPM dependencies run: npm ci diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d022d40..6efdb9c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,13 +12,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Git checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: ref: 'master' - name: Setup Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: - node-version: '14' + node-version: '20' registry-url: 'https://registry.npmjs.org' - name: Install NPM dependencies run: npm ci