From 59be2d63ed2a6698e9021d45977568600574793f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 13 Jun 2026 08:31:30 +0000 Subject: [PATCH] chore(deps): update actions/run-pnpm to actions/run-pnpm/v0.2.1 --- .github/workflows/reusable-ci.yaml | 10 +++++----- .github/workflows/reusable-release-npm.yaml | 8 ++++---- .github/workflows/reusable-test-build-tools.yaml | 6 +++--- .github/workflows/reusable-test.yaml | 2 +- actions/setup/action.yaml | 2 +- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/reusable-ci.yaml b/.github/workflows/reusable-ci.yaml index 5e26cc4..05fe605 100644 --- a/.github/workflows/reusable-ci.yaml +++ b/.github/workflows/reusable-ci.yaml @@ -116,30 +116,30 @@ jobs: - name: build if: ${{ inputs.build }} - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.build-script }} - name: post-build if: ${{ inputs.build && inputs.post-build-script != '' }} - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.post-build-script }} - name: lint if: ${{ inputs.lint }} - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.lint-script }} - name: fmt if: ${{ inputs.fmt }} - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.fmt-script }} - name: typecheck if: ${{ inputs.typecheck }} - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.typecheck-script }} diff --git a/.github/workflows/reusable-release-npm.yaml b/.github/workflows/reusable-release-npm.yaml index 4d10e62..012f01d 100644 --- a/.github/workflows/reusable-release-npm.yaml +++ b/.github/workflows/reusable-release-npm.yaml @@ -84,13 +84,13 @@ jobs: run: pnpx changelogithub - name: install dependencies - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: install --frozen-lockfile ${{ inputs.install-args }} - name: build if: ${{ inputs.build }} - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.build-script }} @@ -109,7 +109,7 @@ jobs: if: ${{ inputs.stage }} env: NPM_CONFIG_PROVENANCE: "true" - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: stage publish ${{ inputs.recursive && '-r' || '' }} --tag ${{ steps.tag.outputs.tag }} ${{ inputs.publish-args }} @@ -117,6 +117,6 @@ jobs: if: ${{ !inputs.stage }} env: NPM_CONFIG_PROVENANCE: "true" - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: publish ${{ inputs.recursive && '-r' || '' }} --tag ${{ steps.tag.outputs.tag }} ${{ inputs.publish-args }} diff --git a/.github/workflows/reusable-test-build-tools.yaml b/.github/workflows/reusable-test-build-tools.yaml index 2296b4d..eda6f7f 100644 --- a/.github/workflows/reusable-test-build-tools.yaml +++ b/.github/workflows/reusable-test-build-tools.yaml @@ -102,16 +102,16 @@ jobs: pnpm add -Dw "$TOOL_NAME@$TOOL_VERSION" - name: build - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.build-script }} - name: test - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.test-script }} - name: typecheck - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.typecheck-script }} diff --git a/.github/workflows/reusable-test.yaml b/.github/workflows/reusable-test.yaml index dfe3fed..cb25903 100644 --- a/.github/workflows/reusable-test.yaml +++ b/.github/workflows/reusable-test.yaml @@ -75,6 +75,6 @@ jobs: install-args: ${{ inputs.install-args }} - name: test - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: ${{ inputs.test-script }} diff --git a/actions/setup/action.yaml b/actions/setup/action.yaml index bac248e..4f8a653 100644 --- a/actions/setup/action.yaml +++ b/actions/setup/action.yaml @@ -66,6 +66,6 @@ runs: scope: ${{ inputs.scope }} - name: install dependencies - uses: luxass/shared-workflows/actions/run-pnpm@b735646b0a4a26710ba55662e060fc6c45560ed8 # unreleased + uses: luxass/shared-workflows/actions/run-pnpm@82c9e3625f7959ea6b3ddd2014a8a095a269e8f7 # actions/run-pnpm/v0.2.1 with: args: install --frozen-lockfile ${{ inputs.install-args }}