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
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

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🔍 Action pin bumped across a major version jump for the reusable workflow

.github/workflows/_checks.yml:57 jumps from v5.6.0 straight to v7.0.0, while .github/workflows/python-lint.yml:26 came from v6.2.0. Both now share the same pinned SHA, so drift is resolved. The steps only use python-version: "3.12" (no cache, no outputs consumed), so the major-version input/output changes in v7 are unlikely to affect these jobs. Note that _checks.yml is a reusable gate documented as mirroring wave-foundation's checks.yml (see the header comment at .github/workflows/_checks.yml:3-6); if the upstream copy in wave-foundation is not bumped in parallel, the two copies drift, which that comment explicitly warns against.

Open in Devin Review

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

with:
python-version: "3.12"
- run: pip install pyyaml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
- name: Install ruff
Expand Down
Loading