Compare commits

..

5 Commits

Author SHA1 Message Date
t.behrendt bc6f6c7057 feat(k8s): replace backupsidecar digest with proper version (#86)
CD / Release (push) Successful in 22s
Reviewed-on: #86
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2026-07-02 20:02:00 +02:00
t.behrendt 97ffdb95d3 feat(action): allow grouping of all minor patch bumps (#84)
CD / Release (push) Successful in 4s
Reviewed-on: #84
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-07-02 12:04:35 +02:00
t.behrendt de46a0e5d9 fix(action): set registry url for internal deps (#83)
CD / Release (push) Successful in 4s
Adding a registry for internal deps so that they can be differentiated from other registries.

Reviewed-on: #83
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-07-01 07:38:43 +02:00
t.behrendt 6000bf3600 ci: test golang config (#82)
CD / Release (push) Successful in 45s
Reviewed-on: #82
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-07-01 07:23:08 +02:00
t.behrendt a69e76a3bb feat: allow automerge of actions/cache v6 (#81)
CD / Release (push) Successful in 5s
Reviewed-on: #81
Co-authored-by: t.behrendt <t.behrendt@t00n.de>
Co-committed-by: t.behrendt <t.behrendt@t00n.de>
2026-07-01 07:09:08 +02:00
3 changed files with 28 additions and 9 deletions
+1
View File
@@ -16,6 +16,7 @@ jobs:
- "common.json" - "common.json"
- "docker-compose.json" - "docker-compose.json"
- "bun-npm.json" - "bun-npm.json"
- "golang.json"
steps: steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Validate "${{ matrix.json-file }}" - name: Validate "${{ matrix.json-file }}"
+17 -8
View File
@@ -9,6 +9,11 @@
"matchManagers": ["github-actions"], "matchManagers": ["github-actions"],
"addLabels": ["deps", "action"] "addLabels": ["deps", "action"]
}, },
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "actions"
},
{ {
"matchManagers": ["github-actions"], "matchManagers": ["github-actions"],
"matchUpdateTypes": ["minor", "patch"], "matchUpdateTypes": ["minor", "patch"],
@@ -17,20 +22,16 @@
"actions/cache", "actions/cache",
"actions/cache/*", "actions/cache/*",
"actions/setup-go", "actions/setup-go",
"azure/setup-kubectl", "azure/setup-kubectl",
"azure/setup-helm", "azure/setup-helm",
"azure/k8s-set-context", "azure/k8s-set-context",
"azure/k8s-create-secret", "azure/k8s-create-secret",
"azure/k8s-deploy", "azure/k8s-deploy",
"azure/k8s-lint", "azure/k8s-lint",
"helmfile/helmfile-action", "helmfile/helmfile-action",
"docker/setup-buildx-action", "docker/setup-buildx-action",
"docker/login-action", "docker/login-action",
"docker/build-push-action", "docker/build-push-action",
"oven-sh/setup-bun" "oven-sh/setup-bun"
], ],
"automerge": true, "automerge": true,
@@ -46,11 +47,9 @@
"t.behrendt/actions/*", "t.behrendt/actions/*",
"t.behrendt/conventional-semantic-git-tag-increment", "t.behrendt/conventional-semantic-git-tag-increment",
"t.behrendt/k_deploy_workflows", "t.behrendt/k_deploy_workflows",
"t.behrendt/validate-json-by-json-schema-action", "t.behrendt/validate-json-by-json-schema-action"
],
"matchRegistryUrls": [
"https://gitea.t000-n.de/**"
], ],
"matchRegistryUrls": ["https://gitea.t000-n.de/**"],
"automerge": true, "automerge": true,
"platformAutomerge": true, "platformAutomerge": true,
"automergeType": "pr", "automergeType": "pr",
@@ -65,6 +64,16 @@
"platformAutomerge": true, "platformAutomerge": true,
"automergeType": "pr", "automergeType": "pr",
"addLabels": ["automerge"] "addLabels": ["automerge"]
},
{
"matchManagers": ["github-actions"],
"matchUpdateTypes": ["major"],
"matchPackageNames": ["actions/cache"],
"matchNewValue": "v6.0.0",
"automerge": true,
"platformAutomerge": true,
"automergeType": "pr",
"addLabels": ["automerge"]
} }
] ]
} }
+9
View File
@@ -4,5 +4,14 @@
"kubernetes": { "kubernetes": {
"enabled": true, "enabled": true,
"labels": ["deps", "k8s"] "labels": ["deps", "k8s"]
},
"packageRules": [
{
"matchManagers": ["kubernetes"],
"matchPackageNames": ["t.behrendt/backupsidecar"],
"matchRegistryUrls": ["gitea.t000-n.de/**"],
"replacementVersion": "0.2.17",
"pinDigests": true
} }
]
} }