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/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4

- name: 🐍 Setup uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: 3.12
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: GitHub Pages
on:
# Weekly
schedule:
- cron: '0 0 * * 0' # Run at midnight UTC on Sunday
- cron: "0 0 * * 0" # Run at midnight UTC on Sunday

# Allow manual trigger
workflow_dispatch: {}
Expand All @@ -25,7 +25,7 @@ jobs:
fetch-depth: 0

- name: 🐍 Setup uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: 3.12
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
shell: bash
env:
NODE_ENV: test
DEBUG: 'pw:webserver'
DEBUG: "pw:webserver"

steps:
- name: 🛑 Cancel Previous Runs
Expand All @@ -54,16 +54,16 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
cache-dependency-path: '**/pnpm-lock.yaml'
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"

- name: 📦 Build frontend
run: make fe
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: 🐍 Setup uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: 3.12
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,12 @@ jobs:
- uses: actions/checkout@v4

- name: 🐍 Setup uv
uses: astral-sh/setup-uv@v5
# Windows is throwing an error with uv on the Post step
continue-on-error: ${{ matrix.os == 'windows-latest' }}
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
# TODO(https://github.com/astral-sh/setup-uv/issues/226): Remove this.
prune-cache: ${{ matrix.os != 'windows-latest' }}

- name: Install Python deps
run: |
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- uses: actions/checkout@v4

- name: 🐍 Setup uv
uses: astral-sh/setup-uv@v5
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: 3.12
Expand Down
Loading