From 74d3cea0caccaaa76deaeabed89f8c7de48c8de5 Mon Sep 17 00:00:00 2001 From: Andrei Pavlov Date: Thu, 23 May 2024 13:26:24 +0700 Subject: [PATCH] Ignore some k8s libs in dependabot config Signed-off-by: Andrei Pavlov --- .github/dependabot.yaml | 8 ++++++-- .github/workflows/test.yml | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index f65c22f9d..2330bc490 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -4,9 +4,13 @@ updates: directory: "/" schedule: interval: daily - open-pull-requests-limit: 3 + open-pull-requests-limit: 5 + ignore: + - dependency-name: k8s.io/apimachinery + - dependency-name: k8s.io/client-go + - dependency-name: k8s.io/controller-runtime - package-ecosystem: github-actions directory: "/" schedule: interval: daily - open-pull-requests-limit: 3 \ No newline at end of file + open-pull-requests-limit: 5 \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 78c7d1ec8..d0cee6197 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ on: - '**.md' env: - GO_VERSION: '1.22' + GO_VERSION: '1.21' jobs: build: