Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/validation-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ jobs:
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v7
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1

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.

✓ Verified authentic: 3d3c42e5aac5ba805825da76410c181273ba90b1 is the commit for actions/checkout tag v7.0.1 (latest v7; confirmed via GitHub API). Full 40-char pin, same major as the prior @v7 → no behavior change. persist-credentials: false is retained. 👍

with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- uses: actions/setup-python@v7
- uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0

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.

✓ Verified authentic: 5fda3b95a4ea91299a34e894583c3862153e4b97 = actions/setup-python v7.0.0 (latest v7). Matches the prior @v7 major → no behavior change.

with:
python-version: "3.12.13"
- uses: astral-sh/setup-uv@v7
- uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0

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.

✓ Verified authentic: 37802adc94f370d6bfd71619e3f0bf239e1f3b78 = astral-sh/setup-uv v7.6.0. Keeps the @v7 major used elsewhere (test.yml) and is byte-identical to the sibling discovery-catalog.yml pin. (setup-uv's latest overall is v10, but staying on v7 preserves parity + behavior — good call for a hardening-only PR; leave the major bump to Dependabot.)

with:
version: "0.9.3"
enable-cache: true
Expand All @@ -42,7 +42,7 @@ jobs:
done
- name: Retain evidence on success or failure
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2

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.

✓ Verified authentic: ea165f8d65b6e75b540449e92b4886f43607fa02 = actions/upload-artifact v4.6.2 (latest v4). Same v4 major as before. Note (pre-existing, out of scope): publish-*.yml pin the v7 major of this action — a repo-internal inconsistency for a future unification pass.

with:
name: validation-runtime-${{ github.event.pull_request.head.sha || github.sha }}
path: outputs/validation-runtime/
Expand Down
Loading