Skip to content

Commit ce7dc12

Browse files
committed
chore: update dependencies
1 parent 1e5091d commit ce7dc12

File tree

5 files changed

+561
-282
lines changed

5 files changed

+561
-282
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/optimizing-pr-creation-version-updates#setting-up-a-cooldown-period-for-dependency-updates
2+
13
version: 2
24
updates:
3-
- package-ecosystem: "pip"
5+
- package-ecosystem: "docker"
6+
directory: "/"
7+
schedule:
8+
interval: "weekly"
9+
- package-ecosystem: "github-actions"
10+
directory: "/"
11+
schedule:
12+
interval: "weekly"
13+
groups: # https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference#groups--
14+
actions:
15+
patterns: ["*"] # Combine all images of last week
16+
- package-ecosystem: "uv"
417
directory: "/"
518
schedule:
619
interval: "daily"

.github/workflows/ci.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
env:
1212
CI: true
1313
COLUMNS: 120
14+
PYTHON_VERSION: "3.13"
1415

1516
permissions:
1617
contents: read
@@ -23,7 +24,7 @@ jobs:
2324

2425
- uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
2526
with:
26-
python-version: "3.12"
27+
python-version: ${{ env.PYTHON_VERSION }}
2728

2829
- name: Install dependencies
2930
run: uv sync --frozen --all-extras --all-packages
@@ -44,7 +45,7 @@ jobs:
4445

4546
- uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
4647
with:
47-
python-version: "3.12"
48+
python-version: ${{ env.PYTHON_VERSION }}
4849

4950
- name: Install dependencies
5051
run: uv sync --frozen --all-extras --all-packages
@@ -94,7 +95,7 @@ jobs:
9495

9596
- uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
9697
with:
97-
python-version: "3.12"
98+
python-version: ${{ env.PYTHON_VERSION }}
9899

99100
- run: uv sync --frozen
100101
- run: uv run --frozen coverage combine coverage
@@ -134,7 +135,7 @@ jobs:
134135

135136
- uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
136137
with:
137-
python-version: "3.12"
138+
python-version: ${{ env.PYTHON_VERSION }}
138139

139140
- name: check GITHUB_REF matches package version
140141
uses: samuelcolvin/check-python-version@758a13b52c26833cffda0f2ed4f3c9e54d9186d9 # v4.1

.github/workflows/update-uv-lock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1818
- uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
1919
with:
20-
python-version: "3.12"
20+
python-version: "3.10" # stay compatible with requires-python
2121
- run: uv lock
2222
- uses: stefanzweifel/git-auto-commit-action@e348103e9026cc0eee72ae06630dbe30c8bf7a79 # v5.1.0
2323
with:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage with explicit platform specification
2-
FROM ghcr.io/astral-sh/uv:python3.12-alpine AS uv
2+
FROM ghcr.io/astral-sh/uv:python3.13-alpine AS uv
33

44
# Install the project into /app
55
WORKDIR /app
@@ -23,7 +23,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
2323
uv sync --frozen --no-dev --no-editable
2424

2525
# Final stage with explicit platform specification
26-
FROM python:3.12-alpine
26+
FROM python:3.13-alpine
2727

2828
COPY --from=uv --chown=app:app /app/.venv /app/.venv
2929

0 commit comments

Comments
 (0)