From b9c8c242b68608e24cf25d45a2a1a0091bb69aca Mon Sep 17 00:00:00 2001 From: Matt Yoder Date: Wed, 18 Sep 2024 14:55:06 -0400 Subject: [PATCH] ci(create-release): fix format of Node version specification Working around this issue: https://github.com/actions/setup-node/issues/996 --- .github/workflows/create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index b657ef6..d07a455 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -36,7 +36,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: "lts" + node-version: "lts/*" registry-url: "https://registry.npmjs.org" - name: Install dependencies run: npm ci