Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
node-version: '22'

- name: Install pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v6
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 pnpm/action-setup bumped to non-existent v6 instead of v5

The commit message (generated by Dependabot) explicitly states "bump pnpm/action-setup from 4 to 5" and links to the v4...v5 comparison, but the actual code change sets pnpm/action-setup@v6 instead of @v5. The v6 tag almost certainly does not exist on the pnpm/action-setup repository, which will cause the workflow to fail at the "Install pnpm" step on every frontend deploy. The rest of the repo already uses v5 — the shared composite action at .github/actions/setup-node-pnpm/action.yml:7 pins to pnpm/action-setup@b307475762933b98ed359c036b0e51f26b63b74b # v5.0.0.

Suggested change
uses: pnpm/action-setup@v6
uses: pnpm/action-setup@v5
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.


- name: Get pnpm store directory
shell: bash
Expand Down
Loading