15 Commits

Author SHA1 Message Date
renovate f26d9b4eec chore(deps): update python docker tag to v3.14
Docker Build and Push / lint (push) Successful in 8s
Docker Build and Push / lint (pull_request) Successful in 9s
Docker Build and Push / build (push) Failing after 2m13s
Docker Build and Push / test (push) Has been skipped
Docker Build and Push / build (pull_request) Successful in 3m18s
Docker Build and Push / push (push) Has been skipped
Docker Build and Push / test (pull_request) Failing after 1m25s
Docker Build and Push / push (pull_request) Has been skipped
2026-06-09 18:00:04 +00:00
jcabillot 570747cdc2 Merge pull request 'chore(config): migrate Renovate config' (#8) from renovate/migrate-config into master
Docker Build and Push / lint (push) Successful in 7s
Docker Build and Push / build (push) Successful in 4m6s
Docker Build and Push / test (push) Successful in 31s
Docker Build and Push / push (push) Successful in 1m3s
Reviewed-on: #8
2026-06-09 11:30:24 -04:00
jcabillot 98a5059251 Merge pull request 'feat: migrate to 4-job CI pipeline v2' (#4) from feat/gitea-actions-v2 into master
Docker Build and Push / lint (push) Successful in 10s
Docker Build and Push / build (push) Successful in 1m16s
Docker Build and Push / test (push) Successful in 34s
Docker Build and Push / push (push) Successful in 1m51s
Reviewed-on: #4
2026-06-09 11:19:34 -04:00
opencodecabilloteu 0f7b3336b8 fix: pin ansible-lint to 4.1.0 (has default_rulesdir in __init__)
Docker Build and Push / lint (push) Successful in 8s
Docker Build and Push / lint (pull_request) Successful in 6s
Docker Build and Push / build (pull_request) Successful in 5m0s
Docker Build and Push / build (push) Successful in 5m4s
Docker Build and Push / test (pull_request) Successful in 28s
Docker Build and Push / push (pull_request) Has been skipped
Docker Build and Push / test (push) Successful in 1m0s
Docker Build and Push / push (push) Successful in 1m8s
2026-06-09 15:09:32 +00:00
opencodecabilloteu 713dade453 fix: pin ansible-lint<5 to keep default_rulesdir import 2026-06-09 15:09:32 +00:00
opencodecabilloteu 566de5e6fc fix: use real ansible-review version 0.13.9 (0.16.0 doesn't exist) 2026-06-09 15:09:32 +00:00
opencodecabilloteu 7cdb4fa89d fix: pin ansible-lint==4.3.7 (default_rulesdir removed in newer) 2026-06-09 15:09:32 +00:00
opencodecabilloteu 2d71b41f95 fix: pin ansible-lint<5 for ansible-review compatibility 2026-06-09 15:09:32 +00:00
cloudix_mcp_server 318f4d538e fix: split RUN for proper hadolint ignore placement 2026-06-09 15:08:49 +00:00
cloudix_mcp_server 85c627fc7c feat: migrate to 4-job CI pipeline (lint+build+test+push) 2026-06-09 15:07:20 +00:00
cloudix_mcp_server 7fc5d28475 feat: add test.sh for CI 2026-06-09 15:07:20 +00:00
cloudix_mcp_server 17d8449692 fix: hadolint fixes (DL3018, DL3013, quoted strings) 2026-06-09 15:07:19 +00:00
renovate 5b87dce005 Migrate config renovate.json
Docker Build and Push / build (pull_request) Successful in 1m1s
2026-06-09 13:27:05 +00:00
jcabillot 71c6269fed Merge pull request 'chore: improve renovate dependency detection' (#5) from chore/renovate into master
Docker Build and Push / build (push) Successful in 59s
Reviewed-on: #5
2026-06-09 08:40:13 -04:00
opencodecabilloteu 63388ba586 chore: improve renovate dependency detection
Docker Build and Push / build (pull_request) Successful in 52s
2026-06-09 02:12:45 +00:00
3 changed files with 18 additions and 2 deletions
-1
View File
@@ -3,7 +3,6 @@ name: Docker Build and Push
on: on:
pull_request: pull_request:
push: push:
branches: [master]
schedule: schedule:
- cron: '30 3 * * 3' - cron: '30 3 * * 3'
+2 -1
View File
@@ -1,8 +1,9 @@
FROM python:3.7-alpine FROM python:3.14-alpine
ARG BUILD_DATE ARG BUILD_DATE
ARG VCS_REF ARG VCS_REF
ARG VERSION ARG VERSION
ARG ANSIBLE_REVIEW_VERSION=0.13.9
# hadolint ignore=DL3018 # hadolint ignore=DL3018
RUN apk --no-cache add --virtual build-dependencies \ RUN apk --no-cache add --virtual build-dependencies \
+16
View File
@@ -0,0 +1,16 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"gitlabci": {
"enabled": false
},
"customManagers": [
{
"customType": "regex",
"description": "Track ansible-review pip version from ARG in Dockerfile",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["ARG ANSIBLE_REVIEW_VERSION=(?<currentValue>[\\d.]+)\\n"],
"depNameTemplate": "ansible-review",
"datasourceTemplate": "pypi"
}
]
}