From a2ee3dab50cf8b63ffd65a100bb553835fc55445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Rebours?= Date: Thu, 19 Jan 2023 17:06:47 +0100 Subject: [PATCH] update actions/setup-node & actions/checkout to v3 in publish as well --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6733a13..2c537d8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,10 +7,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: - node-version: '18.x' + node-version: 18 registry-url: 'https://registry.npmjs.org' - run: npm ci - run: npm run prepublishOnly