From b35807aff72b57367b003ac831443898c038548a Mon Sep 17 00:00:00 2001 From: Marcell Huszti Date: Wed, 19 Jun 2024 11:35:56 +0200 Subject: [PATCH] chore(workflow): update used node version and apis --- .github/workflows/pull-request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 928cc15..b5d4b6c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -10,11 +10,11 @@ jobs: contents: write 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