From 24e8726e417120db793f87c0e2bbd8b06877e642 Mon Sep 17 00:00:00 2001 From: Morten Olsen Date: Wed, 10 Dec 2025 12:34:50 +0100 Subject: [PATCH] fix: incorrect pnpm version in github action --- .github/workflows/pipeline-default.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pipeline-default.yaml b/.github/workflows/pipeline-default.yaml index 6d67701..a24f64a 100644 --- a/.github/workflows/pipeline-default.yaml +++ b/.github/workflows/pipeline-default.yaml @@ -12,13 +12,13 @@ on: env: environment: test release_channel: latest - DO_NOT_TRACK: '1' - NODE_VERSION: '23.x' - NODE_REGISTRY: 'https://registry.npmjs.org' + DO_NOT_TRACK: "1" + NODE_VERSION: "23.x" + NODE_REGISTRY: "https://registry.npmjs.org" NPM_TOKEN: ${{ secrets.NPM_TOKEN }} DOCKER_REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} - PNPM_VERSION: 10.6.0 + PNPM_VERSION: 10.17.0 permissions: contents: write @@ -56,8 +56,8 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: '${{ env.NODE_VERSION }}' - registry-url: '${{ env.NODE_REGISTRY }}' + node-version: "${{ env.NODE_VERSION }}" + registry-url: "${{ env.NODE_REGISTRY }}" - uses: pnpm/action-setup@v4 name: Install pnpm @@ -82,4 +82,5 @@ jobs: node ./scripts/set-version.mjs $(git describe --tag --abbrev=0) pnpm publish -r --no-git-checks --access public env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} \ No newline at end of file + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} +