Skip to content
Merged
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/beat-speed-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: [self-hosted, X64, Linux]
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Ensure uv is available (for scikit-learn baselines)
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/binary-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
echo "Building pv for $TAG → ${{ matrix.target }}"

- name: Checkout at tag
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
ref: ${{ steps.tag.outputs.tag }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/book-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: Chapter Examples Compile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
needs: chapter-examples-compile
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
name: Book Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
Expand All @@ -105,7 +105,7 @@ jobs:
name: Contract Enforcement
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Every chapter has a contract
run: |
FAIL=0
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
name: Namespace Discipline
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: No legacy imports in chapter examples
run: |
FAIL=0
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
name: SUMMARY.md Integrity
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: No dead links in SUMMARY.md
run: |
FAIL=0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: Build Book
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install mdBook
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
IMAGE: localhost:5000/sovereign-ci:stable
PR_OR_REF: ${{ github.event.pull_request.number || github.ref_name }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- name: Pull sovereign-ci image (with retry + local-cache fallback)
# Self-hosted runner's local Docker registry at localhost:5000 is
# occasionally restarting OR experiencing extended outages
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:
# via repo variable MUTANTS_MAX_MISSED if a diff legitimately can't reach 0.
MUTANTS_MAX_MISSED: ${{ vars.MUTANTS_MAX_MISSED || '0' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
# Need history + base branch to compute the PR diff for --in-diff.
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# pristine tree, and the default git-clean choked on root-owned leftovers
# (e.g. contracts/.pv/cache from prior `pv` jobs → EACCES on rmdir),
# failing checkout before any coverage ran.
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
clean: false

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
has_commits: ${{ steps.check.outputs.has_commits }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Download all artifacts
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qwen-story-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
PMAT_HUNT: ${{ github.event.inputs.pmat_hunt || '1' }}
RUST_BACKTRACE: '1'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 1

Expand Down
Loading