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 @@ -56,7 +56,7 @@ jobs:
persist-credentials: false
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: "3.12"
python-version: "3.14"

@devin-ai-integration devin-ai-integration Bot Aug 6, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

πŸ“ Info: setup-python version bump only affects an inline yaml-based validator

The bumped interpreter (.github/workflows/_checks.yml:59) is used only by the inlined skill-frontmatter script at .github/workflows/_checks.yml:63-104, which relies on sys, os, re, subprocess and pyyaml β€” none of which have breaking changes affecting this usage. The only external dependency risk is pip install pyyaml at .github/workflows/_checks.yml:60 needing a wheel for 3.14; PyYAML publishes cp314 wheels, so no source build is expected on ubuntu-latest. Note the script is also declared as a mirror of wave-foundation/scripts/validate-skills.py; the upstream copy's workflow pin may now drift from 3.14.

Open in Devin Review

Was this helpful? React with πŸ‘ or πŸ‘Ž to provide feedback.

- run: pip install pyyaml
- name: Skill frontmatter gate
run: |
Expand Down
Loading