From febcadd628c1e5f1a9b2cbd49ce277e267ac49c4 Mon Sep 17 00:00:00 2001 From: Stefan Bueringer Date: Fri, 5 Jul 2024 12:44:35 +0200 Subject: [PATCH] Stop bumping cel-go via dependabot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stefan Büringer buringerst@vmware.com --- .github/dependabot.yaml | 3 +++ go.mod | 1 + 2 files changed, 4 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 82826f43abc2..42a8a1a9a898 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -43,6 +43,9 @@ updates: update-types: [ "version-update:semver-major", "version-update:semver-minor" ] - dependency-name: "google.golang.org/grpc" update-types: [ "version-update:semver-major", "version-update:semver-minor" ] + # Note: We have to keep this 100% in sync with k8s.io, so we get exactly the behavior + # that the k8s.io CEL code expects. + - dependency-name: "github.com/google/cel-go" # Ignore kind as its upgraded manually. - dependency-name: "sigs.k8s.io/kind" update-types: [ "version-update:semver-major", "version-update:semver-minor" ] diff --git a/go.mod b/go.mod index eacd5e29977c..cd5a8d5570de 100644 --- a/go.mod +++ b/go.mod @@ -17,6 +17,7 @@ require ( github.com/flatcar/ignition v0.36.2 github.com/go-logr/logr v1.4.2 github.com/gobuffalo/flect v1.0.2 + // Note: This must be kept in sync with the version used by k8s.io. github.com/google/cel-go v0.17.8 github.com/google/go-cmp v0.6.0 github.com/google/go-github/v53 v53.2.0