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
6 changes: 5 additions & 1 deletion .github/workflows/release-automation-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ concurrency:
permissions:
contents: read

env:
# Keep release automation runtime pins explicit and aligned with validation.
PYTHON_VERSION: "3.14"

jobs:
regression:
name: RA regression canary
Expand All @@ -50,7 +54,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: ${{ env.PYTHON_VERSION }}

- name: Install runner dependencies
run: |
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release-automation-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ env:
# Allowlist for tooling_ref_override beyond a 40-char SHA. Comma-separated.
# Each consuming caller's override input must match a SHA or one of these.
ALLOWED_TOOLING_REFS: "main,v1-rc,hotfix"
# Keep release automation runtime pins explicit and aligned with validation.
PYTHON_VERSION: "3.14"
NODE_VERSION: "24"

permissions:
contents: write
Expand Down Expand Up @@ -1004,12 +1007,12 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: ${{ env.PYTHON_VERSION }}

- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: "24"
node-version: ${{ env.NODE_VERSION }}

# ── Central validation settings (main) ─────────────────────────
#
Expand Down Expand Up @@ -1473,7 +1476,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: ${{ env.PYTHON_VERSION }}

- name: Install dependencies
run: pip install --quiet -r _tooling/requirements.txt
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tooling-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ permissions:

env:
ACTIONLINT_VERSION: "1.7.12"
PYTHON_VERSION: "3.11"
# Must match .github/workflows/validation.yml; Tooling CI validates the same Node-backed engines.
VALIDATION_NODE_VERSION: "24"
# Must match the reusable workflows; Tooling CI validates the same engines.
PYTHON_VERSION: "3.14"
NODE_VERSION: "24"

jobs:
changes:
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: ${{ env.VALIDATION_NODE_VERSION }}
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: validation/package-lock.json

Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: ${{ env.VALIDATION_NODE_VERSION }}
node-version: ${{ env.NODE_VERSION }}

- name: Check custom Spectral functions
shell: bash
Expand Down Expand Up @@ -310,7 +310,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: ${{ env.VALIDATION_NODE_VERSION }}
node-version: ${{ env.NODE_VERSION }}
cache: npm
cache-dependency-path: validation/package-lock.json

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/validation-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ concurrency:
permissions:
contents: read

env:
# Keep validation runtime pins explicit and aligned across CI workflows.
PYTHON_VERSION: "3.14"

jobs:
regression:
name: Regression canary
Expand All @@ -49,7 +53,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: ${{ env.PYTHON_VERSION }}

- name: Install runner dependencies
run: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/validation-settings-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ on:
permissions:
contents: read

env:
# Keep validation runtime pins explicit and aligned across CI workflows.
PYTHON_VERSION: "3.14"

jobs:
validate:
name: Schema-validate validation-settings.yaml
Expand All @@ -37,7 +41,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: ${{ env.PYTHON_VERSION }}

- name: Install dependencies
run: pip install --quiet -r requirements.txt
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ env:
# Allowlist for tooling_ref_override beyond a 40-char SHA. Comma-separated.
# Each consuming caller's override input must match a SHA or one of these.
ALLOWED_TOOLING_REFS: "main,v1-rc,hotfix"
VALIDATION_NODE_VERSION: "24"
# Keep validation runtime pins explicit and aligned across reusable workflows.
PYTHON_VERSION: "3.14"
NODE_VERSION: "24"

permissions:
checks: write
Expand Down Expand Up @@ -204,13 +206,13 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: ${{ env.PYTHON_VERSION }}

# ── Step 5: Setup Node ─────────────────────────────────────────
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: ${{ env.VALIDATION_NODE_VERSION }}
node-version: ${{ env.NODE_VERSION }}

# ── Step 6: Detect release-plan changes (PR only) ──────────────
- name: Detect release-plan changes
Expand Down
2 changes: 1 addition & 1 deletion shared-actions/create-snapshot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ runs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.14'

- name: Install Python dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion shared-actions/derive-release-state/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ runs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.14"

- name: Install dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion shared-actions/post-bot-comment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
python-version: "3.14"

- name: Install dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion shared-actions/run-validation/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: |
(all engines, post-filter, output generation), writes workflow summary,
and outputs the overall result.

Prerequisites: Python 3.11 and Node 24 must be available (caller sets
Prerequisites: Python 3.14 and Node 24 must be available (caller sets
up runtimes via setup-python and setup-node before invoking this action).

inputs:
Expand Down
2 changes: 1 addition & 1 deletion shared-actions/sync-release-issue/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ runs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.14'

- name: Install dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion shared-actions/update-issue-section/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.14'

- name: Fetch Issue and Update Section
id: update
Expand Down
2 changes: 1 addition & 1 deletion shared-actions/validate-release-plan/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ runs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.14'

- name: Install dependencies
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion validation/scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This file is the CLI reference only.

### Prerequisites

- Python 3.11+ with `pyyaml` and `jsonschema`
- Python 3.14 with `pyyaml` and `jsonschema`
- `gh` CLI installed and authenticated (`gh auth status` must be green)
- The test repo must have the validation framework caller workflow installed
at `.github/workflows/camara-validation.yml`
Expand Down