Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update aws-sdk-go-v2 monorepo (main) #666

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Cilium",
"image": "quay.io/cilium/cilium-builder:283b3ff907f1eb0a3e12104ebae6fcc84d8be430@sha256:e55c9787c1b02bb6b9bb3149d8f64f182bf6ae400f18a0ec8fb6e4b82648ac79",
"image": "quay.io/cilium/cilium-builder:c9552a6e6ff908871b56ae4c223674a1d847630d@sha256:34b3ebb308155e4283c6d4aee4508f779ec8708a051ebfbaf665bde9007e388d",
"workspaceFolder": "/go/src/github.com/cilium/cilium",
"workspaceMount": "source=${localWorkspaceFolder},target=/go/src/github.com/cilium/cilium,type=bind",
"features": {
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/renovate/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

apt update

apt install -y gettext
apt install -y gettext docker-buildx

ls -lah /var/run/docker.sock

Expand Down
68 changes: 62 additions & 6 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"helpers:pinGitHubActionDigests"
],
// self-hosted configuration
"username": "cilium-renovate[bot]",
"repositories": ["cilium/cilium"],
"username": "private-renovate[bot]",
"repositories": ["aanm/cilium"],
// renovate first reads this configuration, then reads the repository
// configuration, since we don't split between the self-hosted and the
// repository configuration, this can lead to duplicate of some areas of the
Expand Down Expand Up @@ -80,8 +80,41 @@
"allowedPostUpgradeCommands": [
"^make -C install/kubernetes$",
"^make -C Documentation update-helm-values$",
"^make generate-k8s-api$",
"^make manifests$"
],
"packageRules": [
{
"matchPackageNames": [
"go", // golang version directive upgrade in go.mod
],
"matchPackagePrefixes": [
"docker.io/library/", // official Docker images
"github.com/golang/", // Golang official org
"golang.org/x/", // Golang official experimental org
"google.golang.org/", // Google official repo for api/genproto/grpc/protobuf
"github.com/google/", // Google official github org
"k8s.io/", // Kubernetes official repo
"sigs.k8s.io/", // Kubernetes official SIG repo
"quay.io/lvh-images/", // LVH images
"quay.io/cilium/", // LVH images
"github.com/cilium/", // Any Cilium dependency
"renovatebot/renovate", // Renovate bot
],
"matchUpdateTypes": [
"patch",
"pin",
"pinDigest",
"digest",
"lockFileMaintenance",
"rollback",
"bump",
"replacement"
],
"automerge": true,
"automergeType": "pr-comment",
"automergeComment": "/test"
},
{
// Try to group all updates for all dependencies in a single PR. More
// specific packageRules are followed by this one.
Expand Down Expand Up @@ -190,10 +223,7 @@
// Once we decide to spend cycles on ginkgo v2 we should update the
// dependency manually.
"github.com/onsi/ginkgo",
"github.com/onsi/gomega/*",
// k8s dependencies will be updated manually along with tests
"k8s.io/*",
"sigs.k8s.io/*"
"github.com/onsi/gomega/*"
]
},
{
Expand Down Expand Up @@ -459,6 +489,32 @@
],
"executionMode": "update"
}
},
{
enabled: false,
matchDepPatterns: [
// k8s dependencies will be updated manually along with tests
"k8s.io/*",
"sigs.k8s.io/*"
],
"matchUpdateTypes": [
"major",
"minor"
]
},
{
matchDepPatterns: [
// k8s dependencies will be updated manually along with tests
"k8s.io/*",
"sigs.k8s.io/*"
],
"postUpgradeTasks": {
"commands": [
"make generate-k8s-api",
"make manifests"
],
"executionMode": "update"
}
}
],
"kubernetes": {
Expand Down
63 changes: 0 additions & 63 deletions .github/workflows/ariane-scheduled.yaml

This file was deleted.

86 changes: 0 additions & 86 deletions .github/workflows/auto-labeler.yaml

This file was deleted.

Loading