Skip to content

Commit

Permalink
Merge pull request #322 from inteon/use_self_upgrade_bugfix
Browse files Browse the repository at this point in the history
Makefile modules upgrade: self-upgrade bugfix
  • Loading branch information
jetstack-bot authored Dec 18, 2023
2 parents e419ee1 + 24ee11e commit ca5d053
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 14 deletions.
3 changes: 3 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
# Edit https://github.com/cert-manager/makefile-modules/blob/main/modules/repository-base/base/.github/dependabot.yaml instead.

# Update Go dependencies and GitHub Actions dependencies weekly.
version: 2
updates:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-self-upgrade.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
const pulls = await github.rest.pulls.list({
owner: owner,
repo: repo,
head: 'self-upgrade',
head: owner + ':self-upgrade',
base: 'main',
state: 'open',
});
Expand Down
24 changes: 12 additions & 12 deletions klone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,60 +10,60 @@ targets:
- folder_name: api-docs
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/api-docs
- folder_name: boilerplate
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/boilerplate
- folder_name: cert-manager
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/cert-manager
- folder_name: controller-gen
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/controller-gen
- folder_name: generate-verify
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/generate-verify
- folder_name: helm
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/helm
- folder_name: help
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/help
- folder_name: kind
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/kind
- folder_name: klone
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/klone
- folder_name: oci-image
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/oci-image
- folder_name: repository-base
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/repository-base
- folder_name: tools
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 5f23abc93e192e49875d3e7de88ddff00c7331a8
repo_hash: 7e5bc953cd6d1196a0f35723b7a38151c76440ab
repo_path: modules/tools
20 changes: 20 additions & 0 deletions make/_shared/repository-base/base/.github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
# Edit https://github.com/cert-manager/makefile-modules/blob/main/modules/repository-base/base/.github/dependabot.yaml instead.

# Update Go dependencies and GitHub Actions dependencies weekly.
version: 2
updates:
- package-ecosystem: gomod
directory: /
schedule:
interval: weekly
groups:
all:
patterns: ["*"]
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
groups:
all:
patterns: ["*"]
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
const pulls = await github.rest.pulls.list({
owner: owner,
repo: repo,
head: 'self-upgrade',
head: owner + ':self-upgrade',
base: 'main',
state: 'open',
});
Expand Down

0 comments on commit ca5d053

Please sign in to comment.