Skip to content

Commit 8c1f12e

Browse files
committed
- pinned uv version to 0.9.17
- uv tool run for docs.yml
1 parent 6f00802 commit 8c1f12e

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
> docs/reference/openapi.json
4747
4848
- name: Build documentation
49-
run: mkdocs build --strict
49+
run: uv tool run mkdocs build --strict
5050

5151
- name: Upload artifact
5252
uses: actions/upload-pages-artifact@v3

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
# Install uv
12-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1313

1414
# Copy dependency files
1515
COPY pyproject.toml uv.lock ./

backend/Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \
1010
&& rm -rf /var/lib/apt/lists/*
1111

1212
# Install uv
13-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
13+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1414

1515
# Copy dependency files
1616
COPY pyproject.toml uv.lock ./

backend/workers/Dockerfile.coordinator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \
1010
&& rm -rf /var/lib/apt/lists/*
1111

1212
# Install uv
13-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
13+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1414

1515
# Copy dependency files
1616
COPY pyproject.toml uv.lock ./

backend/workers/Dockerfile.dlq_processor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
# Install uv
12-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1313

1414
# Copy dependency files
1515
COPY pyproject.toml uv.lock ./

backend/workers/Dockerfile.event_replay

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
# Install uv
12-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1313

1414
# Copy dependency files
1515
COPY pyproject.toml uv.lock ./

backend/workers/Dockerfile.k8s_worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
# Install uv
12-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1313

1414
# Copy dependency files
1515
COPY pyproject.toml uv.lock ./

backend/workers/Dockerfile.pod_monitor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
# Install uv
12-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1313

1414
# Copy dependency files
1515
COPY pyproject.toml uv.lock ./

backend/workers/Dockerfile.result_processor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
# Install uv
12-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1313

1414
# Copy dependency files
1515
COPY pyproject.toml uv.lock ./

backend/workers/Dockerfile.saga_orchestrator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
99
&& rm -rf /var/lib/apt/lists/*
1010

1111
# Install uv
12-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1313

1414
# Copy dependency files
1515
COPY pyproject.toml uv.lock ./

0 commit comments

Comments
 (0)