From b516d6805f0bb6c0808d2c608d806c5158673148 Mon Sep 17 00:00:00 2001 From: Celes Hillyerd Date: Fri, 26 Jun 2026 03:27:25 -0700 Subject: [PATCH] ci: fix remaining dockerhub-cache references in test/finalize --- .woodpecker/finalize.yml | 4 ++-- .woodpecker/test.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.woodpecker/finalize.yml b/.woodpecker/finalize.yml index afd8f26..91ead9d 100644 --- a/.woodpecker/finalize.yml +++ b/.woodpecker/finalize.yml @@ -10,7 +10,7 @@ when: steps: integration-test: - image: registry.celestium.life/dockerhub-cache/alpine/k8s:1.30.2 + image: alpine/k8s:1.30.2 environment: DOCKERHUB_USER: from_secret: docker_username @@ -29,7 +29,7 @@ steps: cpu: 1000m mirror-github: - image: registry.celestium.life/dockerhub-cache/alpine/git + image: alpine/git failure: ignore environment: GITHUB_SSH_KEY: diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 66f6ecd..81e9b85 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -4,7 +4,7 @@ when: - pull_request steps: lint-python: - image: registry.celestium.life/dockerhub-cache/library/python:3.12-slim + image: python:3.12-slim commands: - pip install ruff==0.15.10 --quiet - ruff --version @@ -20,7 +20,7 @@ steps: cpu: 1000m depends_on: [] test-python: - image: registry.celestium.life/dockerhub-cache/library/python:3.12-slim + image: python:3.12-slim commands: - pip install -r requirements.txt --quiet - pip install hypothesis --quiet @@ -36,7 +36,7 @@ steps: cpu: 2000m depends_on: [] test-frontend: - image: registry.celestium.life/dockerhub-cache/library/node:24-slim + image: node:24-slim commands: - cd frontend - npm ci