From 6891b06e5a17795d8c2771dd9c705e9268272c95 Mon Sep 17 00:00:00 2001 From: Alex Good Date: Wed, 27 Sep 2023 21:41:19 +0100 Subject: [PATCH] Correctly set node version in release action --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 316725a..57d6a14 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,7 +10,7 @@ jobs: # Setup .npmrc file to publish to npm - uses: actions/setup-node@v3 with: - node-version: 20.x' + node-version: '20.6.1' registry-url: 'https://registry.npmjs.org' # Defaults to the user or organization that owns the workflow file scope: '@octocat'