From d2381b31a06a976993e3ce5e6958eede7be48507 Mon Sep 17 00:00:00 2001 From: Jason Praful Date: Mon, 15 Sep 2025 11:55:28 +0100 Subject: [PATCH] remove pnpm setup github action --- .github/workflows/update-dependencies.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 9b641f02..f293b547 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -31,10 +31,6 @@ jobs: corepack enable npm install -g semver@7.7.2 - - uses: pnpm/action-setup@v4 - with: - version: 10 - - name: 🔍 Get current dependency versions id: current-versions run: | @@ -321,6 +317,8 @@ jobs: for dir in $PNPM_EXAMPLE_DIRS; do echo "📦 Installing dependencies to update lockfile..." cd "$dir" + corepack install + corepack enable pnpm install git add pnpm-lock.yaml cd - > /dev/null