Skip to content

Commit 1169732

Browse files
Merge pull request #454 from cert-manager/self-upgrade-main
[CI] Merge self-upgrade-main into main
2 parents 7b426aa + a25d1e7 commit 1169732

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

.github/renovate.json5

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
enabledManagers: [
88
'gomod',
99
],
10-
separateMajorMinor: false,
1110
extends: [
1211
'config:best-practices',
1312
':gitSignOff',

klone.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,70 +10,70 @@ targets:
1010
- folder_name: boilerplate
1111
repo_url: https://github.com/cert-manager/makefile-modules.git
1212
repo_ref: main
13-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
13+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
1414
repo_path: modules/boilerplate
1515
- folder_name: cert-manager
1616
repo_url: https://github.com/cert-manager/makefile-modules.git
1717
repo_ref: main
18-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
18+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
1919
repo_path: modules/cert-manager
2020
- folder_name: controller-gen
2121
repo_url: https://github.com/cert-manager/makefile-modules.git
2222
repo_ref: main
23-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
23+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
2424
repo_path: modules/controller-gen
2525
- folder_name: generate-verify
2626
repo_url: https://github.com/cert-manager/makefile-modules.git
2727
repo_ref: main
28-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
28+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
2929
repo_path: modules/generate-verify
3030
- folder_name: go
3131
repo_url: https://github.com/cert-manager/makefile-modules.git
3232
repo_ref: main
33-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
33+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
3434
repo_path: modules/go
3535
- folder_name: helm
3636
repo_url: https://github.com/cert-manager/makefile-modules.git
3737
repo_ref: main
38-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
38+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
3939
repo_path: modules/helm
4040
- folder_name: help
4141
repo_url: https://github.com/cert-manager/makefile-modules.git
4242
repo_ref: main
43-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
43+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
4444
repo_path: modules/help
4545
- folder_name: kind
4646
repo_url: https://github.com/cert-manager/makefile-modules.git
4747
repo_ref: main
48-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
48+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
4949
repo_path: modules/kind
5050
- folder_name: klone
5151
repo_url: https://github.com/cert-manager/makefile-modules.git
5252
repo_ref: main
53-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
53+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
5454
repo_path: modules/klone
5555
- folder_name: licenses
5656
repo_url: https://github.com/cert-manager/makefile-modules.git
5757
repo_ref: main
58-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
58+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
5959
repo_path: modules/licenses
6060
- folder_name: oci-build
6161
repo_url: https://github.com/cert-manager/makefile-modules.git
6262
repo_ref: main
63-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
63+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
6464
repo_path: modules/oci-build
6565
- folder_name: oci-publish
6666
repo_url: https://github.com/cert-manager/makefile-modules.git
6767
repo_ref: main
68-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
68+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
6969
repo_path: modules/oci-publish
7070
- folder_name: repository-base
7171
repo_url: https://github.com/cert-manager/makefile-modules.git
7272
repo_ref: main
73-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
73+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
7474
repo_path: modules/repository-base
7575
- folder_name: tools
7676
repo_url: https://github.com/cert-manager/makefile-modules.git
7777
repo_ref: main
78-
repo_hash: 228dee9049e9b52dac451c913164892f575e0b07
78+
repo_hash: 164d45e6f5ad6284301392c45dc8252e21261c65
7979
repo_path: modules/tools

make/_shared/go/01_mod.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ generate-go-mod-tidy: | $(NEEDS_GO)
6060
echo ""; \
6161
done
6262

63-
shared_generate_targets += generate-go-mod-tidy
63+
shared_generate_targets := generate-go-mod-tidy $(shared_generate_targets)
6464

6565
ifndef dont_generate_govulncheck
6666

make/_shared/repository-base/base-dependabot/.github/renovate.json5

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
enabledManagers: [
88
'gomod',
99
],
10-
separateMajorMinor: false,
1110
extends: [
1211
'config:best-practices',
1312
':gitSignOff',

make/_shared/tools/00_mod.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,12 @@ NEEDS_CTR = __require-ctr
6161

6262
tools :=
6363
# https://github.com/helm/helm/releases
64+
# renovate: datasource=github-releases packageName=helm/helm
6465
tools += helm=v3.18.4
6566
# https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl
6667
tools += kubectl=v1.33.3
6768
# https://github.com/kubernetes-sigs/kind/releases
69+
# renovate: datasource=github-releases packageName=kubernetes-sigs/kind
6870
tools += kind=v0.29.0
6971
# https://www.vaultproject.io/downloads
7072
tools += vault=1.20.2

0 commit comments

Comments
 (0)