Compare commits

..

1 Commits

Author SHA1 Message Date
t.behrendt 04dbf706d8 fix(action): set registry url for internal deps
CI / Test (bun-npm.json) (pull_request) Successful in 4s
CI / Test (common.json) (pull_request) Successful in 4s
CI / Test (docker-compose.json) (pull_request) Successful in 5s
CI / Test (action.json) (pull_request) Failing after 19s
CI / Test (helm.json) (pull_request) Successful in 4s
CI / Format (pull_request) Failing after 6s
CI / Test (k8s.json) (pull_request) Successful in 23s
2026-07-01 07:35:57 +02:00
2 changed files with 8 additions and 13 deletions
-1
View File
@@ -16,7 +16,6 @@ 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 }}"
+8 -12
View File
@@ -17,16 +17,20 @@
"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,
@@ -42,9 +46,11 @@
"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",
@@ -59,16 +65,6 @@
"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"]
} }
] ]
} }