From 446a197afb9625853170b8572d710a9e6f6b43c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20P=C3=B6hls?= Date: Tue, 17 Oct 2023 08:56:18 +0200 Subject: [PATCH] publish using node 20 --- .github/workflows/publish-in-github-package-registry.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish-in-github-package-registry.yml b/.github/workflows/publish-in-github-package-registry.yml index aa60842..461b57e 100644 --- a/.github/workflows/publish-in-github-package-registry.yml +++ b/.github/workflows/publish-in-github-package-registry.yml @@ -9,10 +9,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - run: npm install - run: npm test @@ -21,12 +21,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Git checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set Node.js Version uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - name: Install dependencies run: npm install