From 4d1894c6528c06bef987935ebcf52a2f399ed2fc Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Sat, 18 Apr 2026 20:58:39 +0000 Subject: [PATCH] ci: revert to python:3.12-slim for lint, ruff image has no shell --- .woodpecker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 5fba412..c4c40bb 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -4,8 +4,10 @@ steps: lint-python: - image: ghcr.io/astral-sh/ruff:0.15.10 + image: python:3.12-slim commands: + - pip install ruff==0.15.10 --quiet + - ruff --version - ruff check --output-format=concise . when: event: [push, pull_request]