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: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:

permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
quality-gate:
Expand All @@ -25,7 +27,7 @@ jobs:
- name: Setup uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
enable-cache: false

- name: Sync Dependencies
run: uv sync --all-extras --frozen
Expand Down Expand Up @@ -73,7 +75,7 @@ jobs:
- name: Setup uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
enable-cache: false

- name: Sync Dependencies
run: uv sync --all-extras --frozen
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/dependency-health.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:

permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
dependency-health:
Expand All @@ -25,7 +27,7 @@ jobs:
- name: Setup uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
enable-cache: false

- name: Run dependency health checks
run: bash ./scripts/dependency_health.sh
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
permissions:
contents: write
id-token: write
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

jobs:
publish:
Expand All @@ -28,7 +30,7 @@ jobs:
- name: Setup uv
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
enable-cache: false

- name: Run regression baseline
run: bash ./scripts/doctor.sh
Expand Down
Loading