From 5577526d1a9731909744e5b05d00927d25192433 Mon Sep 17 00:00:00 2001 From: Philip Laine Date: Mon, 18 May 2026 12:29:17 +0200 Subject: [PATCH] Update to Go 1.26.3 (#261) This change bumps the toolchain version and also enables dependabot updates for e2e tests. ## Summary by CodeRabbit * **Chores** * Updated Go toolchain to a newer version for improved stability and performance * Enhanced automated dependency management configuration for development and testing environments [![Review Change Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/netbirdio/kubernetes-operator/pull/261?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack) --- .github/dependabot.yaml | 10 ++++++++++ go.mod | 2 +- test/e2e/go.mod | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index dab54d6..7434541 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -19,3 +19,13 @@ updates: k8s: patterns: - "k8s.io/*" + - package-ecosystem: "gomod" + directories: + - "/test/e2e" + schedule: + interval: "weekly" + open-pull-requests-limit: 15 + groups: + gomod-e2e: + patterns: + - "*" diff --git a/go.mod b/go.mod index 7dad913..04d35c4 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module github.com/netbirdio/kubernetes-operator go 1.26.0 -toolchain go1.26.2 +toolchain go1.26.3 require ( github.com/fluxcd/pkg/runtime v0.106.0 diff --git a/test/e2e/go.mod b/test/e2e/go.mod index 265499f..e4702e2 100644 --- a/test/e2e/go.mod +++ b/test/e2e/go.mod @@ -2,7 +2,7 @@ module github.com/netbirdio/kubernetes-operator/test/e2e go 1.26.0 -toolchain go1.26.2 +toolchain go1.26.3 require ( github.com/go-openapi/testify/v2 v2.5.0