Skip to content

Bump the go-dependencies group across 1 directory with 22 updates#752

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go-dependencies-12ed2b9744
Closed

Bump the go-dependencies group across 1 directory with 22 updates#752
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go-dependencies-12ed2b9744

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 31, 2026

Bumps the go-dependencies group with 16 updates in the / directory:

Package From To
github.com/Azure/azure-sdk-for-go/sdk/azcore 1.18.0 1.21.0
github.com/Azure/azure-sdk-for-go/sdk/containers/azcontainerregistry 0.2.2 0.2.3
github.com/andygrunwald/go-jira 1.16.0 1.17.0
github.com/aws/aws-sdk-go-v2 1.36.3 1.41.5
github.com/aws/aws-sdk-go-v2/config 1.29.14 1.32.13
github.com/aws/aws-sdk-go-v2/feature/s3/manager 1.17.72 1.22.10
github.com/aws/aws-sdk-go-v2/service/ecs 1.54.6 1.75.0
github.com/aws/aws-sdk-go-v2/service/lambda 1.71.2 1.88.5
github.com/containers/image/v5 5.34.3 5.36.2
github.com/go-git/go-git/v5 5.17.1 5.17.2
github.com/go-playground/validator/v10 10.26.0 10.30.2
github.com/open-policy-agent/opa 1.13.2 1.15.1
github.com/zalando/go-keyring 0.2.6 0.2.8
golang.org/x/oauth2 0.34.0 0.36.0
k8s.io/kubernetes 1.35.0 1.35.3
sigs.k8s.io/kind 0.11.1 0.31.0

Updates github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.18.0 to 1.21.0

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/azcore's releases.

sdk/azcore/v1.21.0

1.21.0 (2026-01-12)

Features Added

  • Added runtime/datetime package which provides specialized time type wrappers for serializing and deserializing time values in various formats used by Azure services.

Other Changes

  • Aligned cloud.AzureGovernment and cloud.AzureChina audience values with Azure CLI
Commits

Updates github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.9.0 to 1.10.1

Commits

Updates github.com/Azure/azure-sdk-for-go/sdk/containers/azcontainerregistry from 0.2.2 to 0.2.3

Commits

Updates github.com/andygrunwald/go-jira from 1.16.0 to 1.17.0

Release notes

Sourced from github.com/andygrunwald/go-jira's releases.

v1.17.0

This is a maintenance release, but there are two important changes:

  • github.com/golang-jwt/jwt/v4 has been updated because of a security issue, see CVE-2025-30204
  • Minimum Go version has been raised from v1.15 to v1.21, due to an update of github.com/google/go-cmp

What's Changed

  • Replace ioutil.ReadFile with os.ReadFile
  • Replace ioutil.ReadAll with io.ReadAll
  • upgraded static v2022.1 => v2023.1
  • go fmt issue.go, metaissue.go, sprint.go
  • Github Actions: Upgrade dominikh/staticcheck-action from v1.2 to v1.4
  • Github Actions: Upgrade actions/setup-go from v3 to v6
  • Github Actions: Upgrade actions/checkout from v3 to v5
  • go mod tidy
  • upgraded github.com/google/go-cmp v0.5.8 => v0.7.0
  • upgraded go 1.15 => 1.21
  • upgraded github.com/golang-jwt/jwt/v4 v4.4.2 => v4.5.2

All these changes have been made by @​andygrunwald in andygrunwald/go-jira#735

Full Changelog: andygrunwald/go-jira@v1.16.1...v1.17.0

v1.16.1

This release is shipping a fix for the deprecation of the GET /rest/api/2/search endpoint. See Deprecation of JQL search and Evaluate expression endpoints / 31 October 2024.

If you are using a Jira Cloud-hosted instance and are using either IssueService.Search() or IssueService.SearchWithContext(), there is a high likelihood that these functions will no longer work for you due to deprecation and removal by Atlassian.

This release introduces IssueService.SearchV2JQL() and IssueService.SearchV2JQLWithContext() with a very similar function signature. To get the same results as with IssueService.Search() or IssueService.SearchWithContext(), you may need to configure a Fields list in the options parameter. Please see Search for issues using JQL enhanced search (GET) for further instructions.

What's Changed

New Contributors

Full Changelog: andygrunwald/go-jira@v1.16.0...v1.16.1

Changelog

Sourced from github.com/andygrunwald/go-jira's changelog.

1.17.0 (2025-09-16)

All changes in #735.

Breaking Changes

  • Minimum Go version increased from 1.15 to 1.21 (due to google/go-cmp dependency update)

Security

  • Updated github.com/golang-jwt/jwt/v4 v4.4.2 to v4.5.2 (CVE-2025-30204)

Maintenance

  • Replaced deprecated ioutil.ReadFile with os.ReadFile
  • Replaced deprecated ioutil.ReadAll with io.ReadAll
  • Replaced deprecated ioutil.Discard with io.Discard
  • Upgraded staticcheck v2022.1 to v2023.1
  • Code formatting updates (issue.go, metaissue.go, sprint.go)

Dependencies

  • github.com/google/go-cmp v0.5.8 to v0.7.0
  • github.com/golang-jwt/jwt/v4 v4.4.2 to v4.5.2

CI/CD

  • Upgraded actions/checkout from v3 to v5
  • Upgraded actions/setup-go from v3 to v6
  • Upgraded dominikh/staticcheck-action from v1.2 to v1.4

1.16.1 (2025-09-13)

Features

  • Added IssueService.SearchV2JQL() and IssueService.SearchV2JQLWithContext() to handle Atlassian's deprecation of GET /rest/api/2/search endpoint (effective October 31, 2024) (#725)

New contributor: @​conor-naranjo

Commits
  • 93f28dd Merge pull request #735 from andygrunwald/v1.17.0-dev-upgrade-dependencies
  • 00778a6 Replace ioutil.Discard with io.Discard
  • 44e617e Replace ioutil.ReadFile with os.ReadFile
  • 546b61f Replace ioutil.ReadAll with io.ReadAll
  • 79978f0 upgraded static v2022.1 => v2023.1
  • 463a8a0 go fmt sprint.go
  • e0ea06f go fmt metaissue.go
  • 2095c75 go fmt issue.go
  • 3d9306e Github Actions: Upgrade dominikh/staticcheck-action from v1.2 to v1.4
  • ead0c0c Github Actions: Upgrade actions/setup-go from v3 to v6
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.36.3 to 1.41.5

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.29.14 to 1.32.13

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.17.67 to 1.19.13

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/s3/manager from 1.17.72 to 1.22.10

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ecs from 1.54.6 to 1.75.0

Commits

Updates github.com/aws/aws-sdk-go-v2/service/lambda from 1.71.2 to 1.88.5

Commits

Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.79.2 to 1.97.3

Commits

Updates github.com/aws/smithy-go from 1.22.3 to 1.24.2

Release notes

Sourced from github.com/aws/smithy-go's releases.

v1.22.4

Release (2025-06-16)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.4
    • Bug Fix: Fix CBOR serd empty check for string and enum fields
Commits

Updates github.com/containers/image/v5 from 5.34.3 to 5.36.2

Release notes

Sourced from github.com/containers/image/v5's releases.

v5.36.2

What's Changed

Full Changelog: containers/image@v5.36.1...v5.36.2

v5.36.1

What's Changed

Full Changelog: containers/image@v5.36.0...v5.36.1

v5.36.0

What's Changed

... (truncated)

Commits
  • d464a25 Bump to v5.36.2
  • 50a6b67 Merge pull request #2943 from TomSweeneyRedHat/dev/tsweeney/backport_2938
  • d3eb538 [release-5.36] rekor: do not cancel http context
  • 6ed8326 Merge pull request #2920 from TomSweeneyRedHat/dev/tsweeney/v5.36.1
  • f6ca2da [release-5.36] Bump to c/image v5.36.1
  • d18da19 [release-5.36] Bump c/storage to v1.59.1
  • ae0c9f3 Merge pull request #2913 from TomSweeneyRedHat/dev/tsweeney/cherrypick2907
  • 40d1027 [release-5.36] Update the CI image, to match Skopeo's updated test code
  • 08ce6b4 Bump to c/image v5.36.0
  • b5e2b66 Bump to c/storage v1.59.0
  • Additional commits viewable in compare view

Updates github.com/docker/docker from 28.0.4+incompatible to 28.3.2+incompatible

Release notes

Sourced from github.com/docker/docker's releases.

28.3.2

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

Bug fixes and enhancements

  • Fix --use-api-socket not working correctly when targeting a remote daemon. docker/cli#6157
  • Fix stray "otel error" logs being printed if debug logging is enabled. docker/cli#6160
  • Quote SSH arguments when connecting to a remote daemon over an SSH connection to avoid unexpected expansion. docker/cli#6147
  • Warn when DOCKER_AUTH_CONFIG is set during docker login and docker logout. docker/cli#6163

Packaging updates

28.3.1

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

Packaging updates

28.3.0

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

New

... (truncated)

Commits

Updates github.com/go-git/go-git/v5 from 5.17.1 to 5.17.2

Release notes

Sourced from github.com/go-git/go-git/v5's releases.

v5.17.2

What's Changed

⚠️ This release fixes a bug (go-git/go-git#1942) that blocked some users from upgrading to v5.17.1. Thanks @​pskrbasu for reporting it. 🙇

Full Changelog: go-git/go-git@v5.17.1...v5.17.2

Commits
  • 45ae193 Merge pull request #1944 from go-git/fix-perms
  • fda4f74 storage: filesystem/dotgit, Skip writing pack files that already exist on disk
  • 2212dc7 Merge pull request #1941 from go-git/renovate/releases/v5.x-go-github.com-go-...
  • ebb2d7d build: Update module github.com/go-git/go-git/v5 to v5.17.1 [SECURITY]
  • See full diff in compare view

Updates github.com/go-playground/validator/v10 from 10.26.0 to 10.30.2

Release notes

Sourced from github.com/go-playground/validator/v10's releases.

v10.30.2

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.30.1...v10.30.2

Release 10.30.1

What's Changed

New Contributors

Full Changelog: go-playground/validator@v10.30.0...v10.30.1

Release 10.30.0

What's Changed

New Contributors

... (truncated)

Commits

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Mar 31, 2026
@claude
Copy link
Copy Markdown
Contributor

claude bot commented Mar 31, 2026

Claude finished @dependabot[bot]'s task in 2m 53s —— View job


Dependency Update Review

  • Gather context and read changed files
  • Analyze dependency usage in codebase
  • Check for breaking changes and risks
  • Post review

Summary

This PR bumps 22 Go dependencies (16 direct, 6 indirect). The changes are net-negative on lines (179 added / 856 deleted in go.sum), indicating dependency tree simplification. Overall this looks low-to-medium risk, but a few items deserve attention before merging.


Dependency-by-Dependency Analysis

Low Risk (routine patch/minor updates)

Package Change Notes
go-git/go-git/v5 5.17.1 → 5.17.2 Bugfix for pack file write issue. No API changes.
golang.org/x/oauth2 0.34.0 → 0.36.0 Standard stdlib-adjacent bump.
docker/docker 28.0.4 → 28.3.2 Indirect usage only (Docker client). No breaking API changes.
hashicorp/go-retryablehttp 0.7.7 → 0.7.8 Patch bump.
go-playground/validator/v10 10.26.0 → 10.30.2 Adds new validators, fixes panics. Used in cmd/kosli/snapshotPaths.go and internal/server/server.go with basic validate:"required" tags — no risk.
zalando/go-keyring 0.2.6 → 0.2.8 Patch bumps. APIs used (Get, Set, ErrNotFound, MockInit) unchanged.
k8s.io/kubernetes 1.35.0 → 1.35.3 Patch release. Used for test/e2e/framework/pod in tests only.

Medium Risk — Worth Verifying

aws/aws-sdk-go-v2 family (v1.36.3 → v1.41.5 + service bumps)

  • Used in internal/aws/aws.go for ECS, Lambda, and S3 operations.
  • AWS SDK v2 follows strict semver for service clients — minor/patch bumps should not break existing APIs.
  • Notable: smithy-go bumped min Go to 1.24, but this repo is on Go 1.25 so no issue.
  • New indirect dependency aws/aws-sdk-go-v2/service/signin appeared — this is pulled in by the config/credentials chain, not a concern.
  • Recommendation: ✅ Should be safe. The APIs used (ListFunctions, GetFunctionConfiguration, ListObjectsV2, ECS describe/list operations) are stable GA APIs.

containers/image/v5 (5.34.3 → 5.36.2)

  • Used in internal/digest/digest.go via docker.ParseReference(), docker.GetDigest(), and types.SystemContext.
  • Release notes mention removal of the ostree transport (INCOMPATIBLE) — but this repo only uses the docker transport, so not affected.
  • containers/storage transitive dep bumped 1.57.2 → 1.59.1.
  • New transitive deps: containerd/errdefs and containerd/errdefs/pkg.
  • Removed: alessio/shellescape (replaced by al.essio.dev/pkg/shellescape which was already present).
  • Recommendation: ✅ Safe for this codebase's usage pattern.

andygrunwald/go-jira (1.16.0 → 1.17.0)

  • Used in internal/jira/jira.go with BasicAuthTransport, BearerAuthTransport, NewClient, Issue.Get.
  • Breaking change in v1.17.0: Min Go version raised from 1.15 to 1.21 — no issue (repo uses Go 1.25).
  • Security fix: Updates golang-jwt/jwt/v4 for CVE-2025-30204.
  • Adds SearchV2JQL for deprecated Jira Cloud endpoint — this repo uses Issue.Get() only, not search, so no action needed.
  • Recommendation: ✅ Safe. The security fix for JWT is a good reason to take this update.

open-policy-agent/opa (1.13.2 → 1.15.1)

  • Used in internal/evaluate/rego.go via opa/v1/ast and opa/v1/rego packages.
  • The v1 import path is OPA's stable API surface. Between 1.13 and 1.15, changes are primarily new built-in functions and performance improvements.
  • Recommendation: ✅ Should be safe. The usage is standard (rego.New, rego.Query, rego.Module, rego.Input, Eval).

Higher Risk — Needs Attention

⚠️ sigs.k8s.io/kind (0.11.1 → 0.31.0)

  • This is a massive version jump (20 minor versions). Used in internal/kube/kube_test.go for creating test KIND clusters.
  • APIs used: cluster.NewProvider(cluster.ProviderWithDocker()), provider.Create(), provider.ExportKubeConfig(), provider.Delete(), cluster.CreateWithWaitForReady().
  • KIND's Go API has been relatively stable for these core operations, but with a jump this large there could be behavioral changes (e.g., default K8s version in the node image, cluster creation options).
  • Since this is test-only, the blast radius is limited to the integration test suite.
  • Recommendation: ⚠️ Run make test_integration_single TARGET=KubeTestSuite to verify KIND cluster creation still works. The API signatures likely haven't changed, but the default node image and behavior may have shifted significantly over 20 minor versions.

⚠️ Removed dependency: gopkg.in/ini.v1

  • This indirect dependency was removed from go.mod. This is expected as newer versions of dependencies have migrated away from it, but worth noting — if any code path still needs it transitively, the build would fail.
  • Recommendation: Verify the project compiles cleanly (go build ./...).

⚠️ Removed dependency: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp

  • This OpenTelemetry HTTP trace exporter was removed as an indirect dep. This is likely due to upstream dependency changes.
  • Recommendation: Should be fine if only gRPC exporter is used upstream, but verify build.

Action Items

  1. Critical: Verify the project compiles — go build ./... (CI should catch this)
  2. Important: Run the Kubernetes integration tests to validate the KIND v0.31.0 jump — make test_integration_full or at minimum make test_integration_single TARGET=KubeTestSuite
  3. Nice to have: Run make test_integration to confirm no regressions from the AWS SDK, containers/image, or OPA updates

Overall Assessment

Approve with testing. The dependency updates are well-scoped and include important security fixes (go-jira JWT CVE, go-git bugfix). The main risk is the sigs.k8s.io/kind v0.11.1→v0.31.0 jump, which should be validated by CI's integration test suite. All other changes are backwards-compatible minor/patch bumps against stable APIs.

Bumps the go-dependencies group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go) | `1.18.0` | `1.21.0` |
| [github.com/Azure/azure-sdk-for-go/sdk/containers/azcontainerregistry](https://github.com/Azure/azure-sdk-for-go) | `0.2.2` | `0.2.3` |
| [github.com/andygrunwald/go-jira](https://github.com/andygrunwald/go-jira) | `1.16.0` | `1.17.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.36.3` | `1.41.5` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.29.14` | `1.32.13` |
| [github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://github.com/aws/aws-sdk-go-v2) | `1.17.72` | `1.22.10` |
| [github.com/aws/aws-sdk-go-v2/service/ecs](https://github.com/aws/aws-sdk-go-v2) | `1.54.6` | `1.75.0` |
| [github.com/aws/aws-sdk-go-v2/service/lambda](https://github.com/aws/aws-sdk-go-v2) | `1.71.2` | `1.88.5` |
| [github.com/containers/image/v5](https://github.com/containers/image) | `5.34.3` | `5.36.2` |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.17.2` |
| [github.com/go-playground/validator/v10](https://github.com/go-playground/validator) | `10.26.0` | `10.30.2` |
| [github.com/open-policy-agent/opa](https://github.com/open-policy-agent/opa) | `1.13.2` | `1.15.1` |
| [github.com/zalando/go-keyring](https://github.com/zalando/go-keyring) | `0.2.6` | `0.2.8` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.34.0` | `0.36.0` |
| [k8s.io/kubernetes](https://github.com/kubernetes/kubernetes) | `1.35.0` | `1.35.3` |
| [sigs.k8s.io/kind](https://github.com/kubernetes-sigs/kind) | `0.11.1` | `0.31.0` |



Updates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.18.0 to 1.21.0
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.18.0...sdk/azcore/v1.21.0)

Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.9.0 to 1.10.1
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.9.0...sdk/azidentity/v1.10.1)

Updates `github.com/Azure/azure-sdk-for-go/sdk/containers/azcontainerregistry` from 0.2.2 to 0.2.3
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Commits](Azure/azure-sdk-for-go@sdk/internal/v0.2.2...sdk/internal/v0.2.3)

Updates `github.com/andygrunwald/go-jira` from 1.16.0 to 1.17.0
- [Release notes](https://github.com/andygrunwald/go-jira/releases)
- [Changelog](https://github.com/andygrunwald/go-jira/blob/main/CHANGELOG.md)
- [Commits](andygrunwald/go-jira@v1.16.0...v1.17.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.36.3 to 1.41.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.36.3...v1.41.5)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.29.14 to 1.32.13
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.29.14...config/v1.32.13)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.67 to 1.19.13
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.17.67...credentials/v1.19.13)

Updates `github.com/aws/aws-sdk-go-v2/feature/s3/manager` from 1.17.72 to 1.22.10
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@feature/s3/manager/v1.17.72...service/mq/v1.22.10)

Updates `github.com/aws/aws-sdk-go-v2/service/ecs` from 1.54.6 to 1.75.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ecs/v1.54.6...service/s3/v1.75.0)

Updates `github.com/aws/aws-sdk-go-v2/service/lambda` from 1.71.2 to 1.88.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/rds/v1.71.2...service/s3/v1.88.5)

Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.79.2 to 1.97.3
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.79.2...service/s3/v1.97.3)

Updates `github.com/aws/smithy-go` from 1.22.3 to 1.24.2
- [Release notes](https://github.com/aws/smithy-go/releases)
- [Changelog](https://github.com/aws/smithy-go/blob/main/CHANGELOG.md)
- [Commits](aws/smithy-go@v1.22.3...v1.24.2)

Updates `github.com/containers/image/v5` from 5.34.3 to 5.36.2
- [Release notes](https://github.com/containers/image/releases)
- [Commits](containers/image@v5.34.3...v5.36.2)

Updates `github.com/docker/docker` from 28.0.4+incompatible to 28.3.2+incompatible
- [Release notes](https://github.com/docker/docker/releases)
- [Commits](moby/moby@v28.0.4...v28.3.2)

Updates `github.com/go-git/go-git/v5` from 5.17.1 to 5.17.2
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.17.1...v5.17.2)

Updates `github.com/go-playground/validator/v10` from 10.26.0 to 10.30.2
- [Release notes](https://github.com/go-playground/validator/releases)
- [Commits](go-playground/validator@v10.26.0...v10.30.2)

Updates `github.com/hashicorp/go-retryablehttp` from 0.7.7 to 0.7.8
- [Changelog](https://github.com/hashicorp/go-retryablehttp/blob/main/CHANGELOG.md)
- [Commits](hashicorp/go-retryablehttp@v0.7.7...v0.7.8)

Updates `github.com/open-policy-agent/opa` from 1.13.2 to 1.15.1
- [Release notes](https://github.com/open-policy-agent/opa/releases)
- [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md)
- [Commits](open-policy-agent/opa@v1.13.2...v1.15.1)

Updates `github.com/zalando/go-keyring` from 0.2.6 to 0.2.8
- [Release notes](https://github.com/zalando/go-keyring/releases)
- [Commits](zalando/go-keyring@v0.2.6...v0.2.8)

Updates `golang.org/x/oauth2` from 0.34.0 to 0.36.0
- [Commits](golang/oauth2@v0.34.0...v0.36.0)

Updates `k8s.io/kubernetes` from 1.35.0 to 1.35.3
- [Release notes](https://github.com/kubernetes/kubernetes/releases)
- [Commits](kubernetes/kubernetes@v1.35.0...v1.35.3)

Updates `sigs.k8s.io/kind` from 0.11.1 to 0.31.0
- [Release notes](https://github.com/kubernetes-sigs/kind/releases)
- [Commits](kubernetes-sigs/kind@v0.11.1...v0.31.0)

---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azcore
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
  dependency-version: 1.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/containers/azcontainerregistry
  dependency-version: 0.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/andygrunwald/go-jira
  dependency-version: 1.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.19.13
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/s3/manager
  dependency-version: 1.22.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ecs
  dependency-version: 1.75.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/lambda
  dependency-version: 1.88.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-version: 1.97.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/aws/smithy-go
  dependency-version: 1.24.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/containers/image/v5
  dependency-version: 5.36.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/docker/docker
  dependency-version: 28.3.2+incompatible
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/go-git/go-git/v5
  dependency-version: 5.17.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/go-playground/validator/v10
  dependency-version: 10.30.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/hashicorp/go-retryablehttp
  dependency-version: 0.7.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/open-policy-agent/opa
  dependency-version: 1.15.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/zalando/go-keyring
  dependency-version: 0.2.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: k8s.io/kubernetes
  dependency-version: 1.35.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: sigs.k8s.io/kind
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/go-dependencies-12ed2b9744 branch from e726ba5 to 17b88b7 Compare April 1, 2026 08:14
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 1, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 1, 2026
@dependabot dependabot bot deleted the dependabot/go_modules/go-dependencies-12ed2b9744 branch April 1, 2026 08:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants