Skip to content

Commit d18efc7

Browse files
committed
chore(deps): close the gaps renovate cannot see
golang.org/x/sys was v0.45.0 in the config-reloader module and v0.46.0 in the other four. .go-version said 1.26.0 while .tool-versions and the release Dockerfile both say 1.26.3, so CI compiled on a different toolchain than the shipped image. One docker/login-action on the release publish path was still v2.2.0 while every other use in the same file was v3.7.0. Major updates are disabled in renovate.json, so it was never going to catch up on its own. The KIND node image is not a *_VERSION variable, so the general Makefile manager cannot see it. It now has a manager of its own that also tracks the digest. Signed-off-by: Bence Csati <bence.csati@axoflow.com>
1 parent 0bdd972 commit d18efc7

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

.github/workflows/artifacts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ jobs:
475475
path: ${{ steps.build.outputs.package }}
476476

477477
- name: Login to GitHub Container Registry
478-
uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
478+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
479479
with:
480480
registry: ghcr.io
481481
username: ${{ github.actor }}

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.26.0
1+
1.26.3

renovate.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,20 @@
4141
"description": [
4242
"setup-envtest can only use Kubernetes versions that have published envtest binaries, which ship as envtest-v* releases of controller-tools."
4343
]
44+
},
45+
{
46+
"customType": "regex",
47+
"managerFilePatterns": [
48+
"/^Makefile$/"
49+
],
50+
"matchStrings": [
51+
"KIND_IMAGE\\s*\\?*=\\s*kindest/node:(?<currentValue>[^@\\s]+)@(?<currentDigest>sha256:[a-f0-9]+)"
52+
],
53+
"datasourceTemplate": "docker",
54+
"depNameTemplate": "kindest/node",
55+
"description": [
56+
"The KIND node image is not a *_VERSION variable, so the general Makefile manager does not see it."
57+
]
4458
}
4559
],
4660
"enabled": true,

0 commit comments

Comments
 (0)