From 36de9b529eb2631a4adf29b1cacde697c363a71a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcus=20P=C3=B6hls?= Date: Sun, 10 Mar 2024 06:03:38 +0100 Subject: [PATCH] bump GitHub Actions dependencies --- .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 56c9f16..37125e0 100644 --- a/.github/workflows/publish-in-github-package-registry.yml +++ b/.github/workflows/publish-in-github-package-registry.yml @@ -10,12 +10,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 + uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Install dependencies run: npm install @@ -24,7 +24,7 @@ jobs: run: npm run build - name: Configure GitHub Package Registry as Publish Target - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: registry-url: 'https://npm.pkg.github.com' scope: '@supercharge'