From b9eb871496dc05e3e468d24d40f3014b0780d5c6 Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Sun, 25 May 2025 20:05:33 -0600 Subject: [PATCH] update build deps --- .gitea/workflows/ci.yml | 4 ++-- Dockerfile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 2e5f54f..8d4e8aa 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@v5 with: - version: "0.7.3" + version: "0.7.8" - name: Install dependencies run: uv sync --group=test - name: Run pytest @@ -53,7 +53,7 @@ jobs: env: DATABASE_URL: postgresql+psycopg://postgres:postgres@postgres:5432/postgres - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v4.4.1 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} - name: Upload test results to Codecov diff --git a/Dockerfile b/Dockerfile index 7de0888..b2b0653 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN apt-get update && \ python3-dev \ && rm -rf /var/lib/apt/lists/* -COPY --from=ghcr.io/astral-sh/uv:0.6 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.7 /uv /uvx /bin/ WORKDIR $APP_HOME COPY . . @@ -39,7 +39,7 @@ RUN uv sync --frozen FROM base AS dev COPY --from=builder-base $APP_HOME $APP_HOME -COPY --from=ghcr.io/astral-sh/uv:0.6 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.7 /uv /uvx /bin/ WORKDIR $APP_HOME @@ -54,7 +54,7 @@ CMD ["teufa", "server", "--dev"] FROM base AS ci COPY --from=builder-base $APP_HOME $APP_HOME -COPY --from=ghcr.io/astral-sh/uv:0.6 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.7 /uv /uvx /bin/ WORKDIR $APP_HOME