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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: CI
# explicitly instead of `ubuntu-latest` so a future auto-bump (to
# ubuntu-26.04 in 2026) can't silently shift the system-library
# baseline. PHP and Python are further pinned to 8.4 / 3.13 via
# shivammathur/setup-php@v2 and actions/setup-python@v6 — those
# shivammathur/setup-php@v2 and actions/setup-python@v7 — those
# override whatever the OS ships, so the prod-parity invariant doesn't
# rely on the runner's default toolchain.
#
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: "3.13"
cache: 'pip'
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
# tests' tmp SQLite schema (option (b) from PLAN_php_layer_split.md
# Phase 1.3 — keeps the schema in lockstep with src/kayak/db/models.py
# via the same Python CLI that production uses).
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: "3.13"
cache: 'pip'
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
# `levels init-db` (schema) + `levels build` tmp setup, so no extra
# PHP-server orchestration is needed in this job — Playwright
# owns the lifecycle.
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: '22' # Active LTS until Apr 2027; matches plan's recommendation.
cache: 'npm'
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: "3.13"
cache: 'pip'
Expand Down Expand Up @@ -266,10 +266,10 @@ jobs:
python-version: ["3.13", "3.14"]
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
with:
enable-cache: true
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
# Cache ~/.cache/pip across runs: the slow deploy tests run
Expand Down Expand Up @@ -366,7 +366,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: "3.13"
cache: 'pip'
Expand Down Expand Up @@ -408,10 +408,10 @@ jobs:
# No kayak_data / PHP / Node needed — it only exercises packaged resources.
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
with:
enable-cache: true
- uses: actions/setup-python@v6
- uses: actions/setup-python@v7
with:
python-version: "3.13"
- name: Build wheel, install outside the checkout, run the engine
Expand Down
Loading