From dbe9b8f466537a91ae6b7f3339358c4d47932203 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 06:53:58 +0000 Subject: [PATCH] chore(deps): bump pnpm/action-setup from 4 to 5 Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 4 to 5. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v4...v5) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/pr-ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6ecdc46..5237e3e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,14 +33,14 @@ jobs: uses: actions/checkout@v6 with: fetch-depth: 0 # Not needed if lastUpdated is not enabled - - uses: pnpm/action-setup@v4 # Uncomment this if you're using pnpm + - uses: pnpm/action-setup@v5 # Uncomment this if you're using pnpm - name: Setup Node uses: actions/setup-node@v6 with: node-version: 20 cache: pnpm - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5 - name: Setup Pages uses: actions/configure-pages@v5 - name: Install dependencies diff --git a/.github/workflows/pr-ci.yml b/.github/workflows/pr-ci.yml index c97c4d7..5cb8a42 100644 --- a/.github/workflows/pr-ci.yml +++ b/.github/workflows/pr-ci.yml @@ -28,14 +28,14 @@ jobs: uses: actions/checkout@v6 with: fetch-depth: 0 # Not needed if lastUpdated is not enabled - - uses: pnpm/action-setup@v4 # Uncomment this if you're using pnpm + - uses: pnpm/action-setup@v5 # Uncomment this if you're using pnpm - name: Setup Node uses: actions/setup-node@v6 with: node-version: 20 cache: pnpm - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5 - name: Install dependencies run: pnpm install - name: Build with VitePress