From 686e3e8a6f1c5d8d389c078a49d9ebe66a108d13 Mon Sep 17 00:00:00 2001 From: bronsen Date: Fri, 5 Dec 2025 17:44:37 +0100 Subject: [PATCH] [ci] don't use variables in workflow I don't understand them --- .woodpecker/workflow.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.woodpecker/workflow.yaml b/.woodpecker/workflow.yaml index 8ed61f7..6a66198 100644 --- a/.woodpecker/workflow.yaml +++ b/.woodpecker/workflow.yaml @@ -10,10 +10,6 @@ matrix: - 3.13 # - 3.12 -variables: - - UV_VERSION: "latest" - - UV_BASE_LAYER: "trixie-slim" - steps: - name: Lint python code image: pipelinecomponents/ruff @@ -26,7 +22,7 @@ steps: - markdownlint-cli2 . - name: Run Tests - image: ghcr.io/astral-uv/uv:${UV_VERSION}-python${PYTHON_VERSION}-${UV_BASE_LAYER} + image: ghcr.io/astral-uv/uv:latest-python${PYTHON_VERSION}-trixie-slim commands: - uv install - uv run pytest tests.py