Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: recursive

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
node-version: '22'
cache: 'npm'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v5
with:
Comment on lines +22 to 26
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

Broken by nonexistent v5 actions

actions/checkout@v5 and actions/setup-node@v5 do not exist (latest is v4), so the workflow will fail when GitHub tries to resolve these tags. Please stick with the published v4 release (or pin a specific commit) until v5 is available.

🤖 Prompt for AI Agents
.github/workflows/lighthouse.yml lines 22-26: the workflow references
nonexistent action versions actions/checkout@v5 and actions/setup-node@v5 which
will cause resolution failures; update those uses to the published v4 releases
(e.g., actions/checkout@v4 and actions/setup-node@v4) or pin to a specific
commit/tag, then test the workflow to ensure the actions resolve successfully.

node-version: '22'
cache: 'npm'
Expand Down
Loading
Loading