From b559a08d2efd895f48aaa285754f2c7844f4b6fe Mon Sep 17 00:00:00 2001 From: Oskari Porkka Date: Thu, 29 Jun 2023 12:21:45 +0200 Subject: [PATCH] Use Node16 actions in publish.yml (#213) The commands `actions/checkout@v2` and `actions/setup-node@v2` are deprecated. We should use the next version of those actions https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/ --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e3e3dc48..7c441462 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,9 +6,9 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Setup .npmrc file to publish to npm - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: 20 registry-url: "https://registry.npmjs.org"