Fix FROM "python:3.14-alpine" → FROM python:3.14-alpine (removed quotes that broke Renovate docker package lookup)
Add ARG ANSIBLE_LINT_VERSION=26.4.0 and version-pin pip install ansible-lint==${ANSIBLE_LINT_VERSION}
Add renovate.json with:
Disabled gitlabci manager
Custom regex manager to track ansible-lint pip version from the new ARG
Why
CRITICAL: The quoted FROM "python:3.14-alpine" caused Renovate to fail docker package lookup with Failed to look up docker package "python: no-result. Removing quotes fixes this.
pip install ansible-lint had no version pin at all — Renovate had nothing to track. Now pinned via ARG with regex manager.
Legacy .gitlab-ci.yml adds empty noise to the Dependency Dashboard.
## What
- Fix `FROM "python:3.14-alpine"` → `FROM python:3.14-alpine` (removed quotes that broke Renovate docker package lookup)
- Add `ARG ANSIBLE_LINT_VERSION=26.4.0` and version-pin `pip install ansible-lint==${ANSIBLE_LINT_VERSION}`
- Add `renovate.json` with:
- Disabled gitlabci manager
- Custom regex manager to track `ansible-lint` pip version from the new ARG
## Why
1. **CRITICAL**: The quoted `FROM "python:3.14-alpine"` caused Renovate to fail docker package lookup with `Failed to look up docker package "python: no-result`. Removing quotes fixes this.
2. `pip install ansible-lint` had no version pin at all — Renovate had nothing to track. Now pinned via ARG with regex manager.
3. Legacy `.gitlab-ci.yml` adds empty noise to the Dependency Dashboard.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
What
FROM "python:3.14-alpine"→FROM python:3.14-alpine(removed quotes that broke Renovate docker package lookup)ARG ANSIBLE_LINT_VERSION=26.4.0and version-pinpip install ansible-lint==${ANSIBLE_LINT_VERSION}renovate.jsonwith:ansible-lintpip version from the new ARGWhy
FROM "python:3.14-alpine"caused Renovate to fail docker package lookup withFailed to look up docker package "python: no-result. Removing quotes fixes this.pip install ansible-linthad no version pin at all — Renovate had nothing to track. Now pinned via ARG with regex manager..gitlab-ci.ymladds empty noise to the Dependency Dashboard.