From 3b39f2c8d8aa65f31b577b9f096a03c75f7c6094 Mon Sep 17 00:00:00 2001 From: David Blass Date: Mon, 13 Oct 2025 15:30:41 -0400 Subject: [PATCH] move pnpm version specifier to actions --- .github/workflows/publish.yml | 2 ++ action.yml | 6 ++++++ entry.cjs | 1 - package.json | 1 - 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d6cb393..a35fce3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,6 +23,8 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 + with: + version: latest - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/action.yml b/action.yml index 531ff3c..1381833 100644 --- a/action.yml +++ b/action.yml @@ -20,8 +20,14 @@ inputs: runs: using: "composite" steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 1 - name: Setup pnpm uses: pnpm/action-setup@v4 + with: + version: latest - name: Setup Node.js 24 uses: actions/setup-node@v4 with: diff --git a/entry.cjs b/entry.cjs index a787521..949e764 100755 --- a/entry.cjs +++ b/entry.cjs @@ -26190,7 +26190,6 @@ var package_default = { upDeps: "pnpm up --latest", createLockfile: "pnpm --ignore-workspace install" }, - packageManager: "pnpm@10.18.2", dependencies: { "@ark/fs": "0.49.0", "@actions/core": "^1.11.1", diff --git a/package.json b/package.json index 2d381b0..157bbd9 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,6 @@ "upDeps": "pnpm up --latest", "createLockfile": "pnpm --ignore-workspace install" }, - "packageManager": "pnpm@10.18.2", "dependencies": { "@ark/fs": "0.49.0", "@actions/core": "^1.11.1",