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