Skip to content
Closed
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
28 changes: 14 additions & 14 deletions .github/workflows/api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.12"

- name: Setup uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0

- name: Install API dependencies
run: |
Expand All @@ -64,7 +64,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Build API container
run: |
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
uses: ./.github/actions/setup-js-workspace
Expand All @@ -110,7 +110,7 @@ jobs:
python-version: "3.12"

- name: Setup uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0

- name: Install system PostgreSQL client
run: |
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
uses: ./.github/actions/setup-js-workspace
Expand All @@ -219,7 +219,7 @@ jobs:
python-version: "3.12"

- name: Setup uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0

- name: Install system PostgreSQL client
run: |
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
echo "$output" | grep -F "Missing required CIQUAL files for phase3 bootstrap"

- name: Cache CIQUAL data
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ runner.temp }}/ciqual-data
key: ciqual-2025-5555c572-e0b1de25-e216928b
Expand Down Expand Up @@ -388,7 +388,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
uses: ./.github/actions/setup-js-workspace
Expand All @@ -404,7 +404,7 @@ jobs:
python-version: "3.12"

- name: Setup uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0

- name: Install system PostgreSQL client
run: |
Expand All @@ -417,7 +417,7 @@ jobs:
uv sync --extra bootstrap --locked

- name: Cache CIQUAL data
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ runner.temp }}/ciqual-data
key: ciqual-2025-5555c572-e0b1de25-e216928b
Expand Down Expand Up @@ -617,15 +617,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.12"

- name: Setup uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0

- name: Install system PostgreSQL client
run: |
Expand All @@ -638,7 +638,7 @@ jobs:
uv sync --extra dev --extra bootstrap --locked

- name: Cache CIQUAL data
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ runner.temp }}/ciqual-data
key: ciqual-2025-5555c572-e0b1de25-e216928b
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changeset-pr-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/changesets-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

- name: Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
with:
version: 10.29.3

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Create release pull request
uses: changesets/action@63a615b9cd06ba9a3e6d13796c7fbcb080a60a0b # v1.8.0
uses: changesets/action@a45c4d594aa4e2c509dc14a9f2b3b67ba3780d0d # v1.9.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run quality gate
run: |
Expand All @@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
id: setup
Expand All @@ -57,10 +57,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
with:
version: 10.29.3

Expand All @@ -75,7 +75,7 @@ jobs:
node-version: "22"

- name: Setup uv
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0

- name: Run Python lint checks
run: |
Expand All @@ -91,7 +91,7 @@ jobs:
content_scaffolds: ${{ steps.scope.outputs.content_scaffolds }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
id: setup
Expand All @@ -143,7 +143,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
id: setup
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:

- name: Save Turbo local cache fallback
if: ${{ always() && steps.setup.outputs.use_remote != 'true' }}
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}-${{ hashFiles('pnpm-lock.yaml', 'turbo.json', 'package.json') }}
Expand All @@ -184,7 +184,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
id: setup
Expand Down Expand Up @@ -232,7 +232,7 @@ jobs:

- name: Save Turbo local cache fallback
if: ${{ always() && steps.setup.outputs.use_remote != 'true' }}
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}-${{ hashFiles('pnpm-lock.yaml', 'turbo.json', 'package.json') }}
Expand All @@ -245,7 +245,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
id: setup
Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:

- name: Save Turbo local cache fallback
if: ${{ always() && steps.setup.outputs.use_remote != 'true' }}
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}-${{ hashFiles('pnpm-lock.yaml', 'turbo.json', 'package.json') }}
Expand All @@ -287,7 +287,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
id: setup
Expand All @@ -312,7 +312,7 @@ jobs:

- name: Save Turbo local cache fallback
if: ${{ always() && steps.setup.outputs.use_remote != 'true' }}
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.job }}-${{ github.ref_name }}-${{ github.sha }}-${{ hashFiles('pnpm-lock.yaml', 'turbo.json', 'package.json') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-hygiene-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node
uses: actions/setup-node@v6
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/phase2-reporting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup Python
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Collect now-set figures from fixtures
run: |
python etl/phase2/reporting/scripts/collect_reporting.py \
Expand All @@ -132,7 +132,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup Python
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup reporting workspace
id: setup
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
PSQL_BIN: psql
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup Python
uses: actions/setup-python@v6
with:
Expand All @@ -272,7 +272,7 @@ jobs:
python -m pip install --upgrade pip
pip install pyyaml==6.0.2 jsonschema==4.23.0 openpyxl psycopg2-binary
- name: Cache CIQUAL data
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ runner.temp }}/ciqual-data
key: ciqual-2025-5555c572-e0b1de25-e216928b
Expand Down Expand Up @@ -368,7 +368,7 @@ jobs:
PSQL_BIN: psql
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup Python
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -412,7 +412,7 @@ jobs:
python -m pip install --upgrade pip
pip install pyyaml==6.0.2 jsonschema==4.23.0 openpyxl psycopg2-binary
- name: Cache CIQUAL data
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ runner.temp }}/ciqual-data
key: ciqual-2025-5555c572-e0b1de25-e216928b
Expand Down Expand Up @@ -513,7 +513,7 @@ jobs:
PSQL_BIN: psql
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup Python
uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -557,7 +557,7 @@ jobs:
python -m pip install --upgrade pip
pip install pyyaml==6.0.2 jsonschema==4.23.0 openpyxl psycopg2-binary
- name: Cache CIQUAL data
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ runner.temp }}/ciqual-data
key: ciqual-2025-5555c572-e0b1de25-e216928b
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/storybook-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup workspace
uses: ./.github/actions/setup-js-workspace
Expand Down
Loading