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/_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
Comment thread
devin-ai-integration[bot] marked this conversation as resolved.

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔍 Node 24 runner requirement introduced by setup-python v6+

The v6.0.0 release notes (carried through into v7) note the action now runs on Node 24 and requires GitHub runner v2.327.1 or later. This job runs on runs-on: ubuntu-latest (.github/workflows/_checks.yml:51) so GitHub-hosted runners satisfy this. However, _checks.yml is a reusable workflow explicitly intended to be called by other WAVE repos (.github/workflows/_checks.yml:3-6); if any consumer routes it to self-hosted runners with an older runner agent, the skill-validate job would fail. Worth confirming no consumer overrides the runner pool.

Open in Devin Review

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

with:
python-version: "3.12"
- run: pip install pyyaml
Expand Down
Loading