chore: improve renovate dependency detection #5
Reference in New Issue
Block a user
Delete Branch "chore/renovate"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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.