Skip to content

🌱 Bump the all-go-mod-patch-and-minor group across 2 directories with 56 updates#6042

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/all-go-mod-patch-and-minor-154cdaaf0e
Closed

🌱 Bump the all-go-mod-patch-and-minor group across 2 directories with 56 updates#6042
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/all-go-mod-patch-and-minor-154cdaaf0e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 5, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-go-mod-patch-and-minor group with 26 updates in the / directory:

Package From To
github.com/apparentlymart/go-cidr 1.1.0 1.1.1
github.com/aws/amazon-vpc-cni-k8s 1.15.5 1.22.1
github.com/aws/aws-lambda-go 1.41.0 1.54.0
github.com/aws/aws-sdk-go-v2 1.41.5 1.41.12
github.com/aws/aws-sdk-go-v2/feature/s3/manager 1.19.12 1.22.25
github.com/aws/aws-sdk-go-v2/service/cloudtrail 1.52.0 1.56.3
github.com/aws/aws-sdk-go-v2/service/configservice 1.56.0 1.64.0
github.com/aws/aws-sdk-go-v2/service/ecrpublic 1.36.0 1.39.5
github.com/aws/aws-sdk-go-v2/service/efs 1.39.0 1.42.0
github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing 1.29.6 1.34.4
github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 1.45.2 1.55.3
github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi 1.26.6 1.33.2
github.com/aws/aws-sdk-go-v2/service/secretsmanager 1.28.6 1.42.2
github.com/aws/aws-sdk-go-v2/service/ssm 1.59.1 1.69.2
github.com/coreos/ignition/v2 2.24.0 2.26.0
github.com/gofrs/flock 0.8.1 0.13.0
github.com/sergi/go-diff 1.3.1 1.4.0
github.com/spf13/cobra 1.9.1 1.10.2
github.com/zgalor/weberr 0.8.2 0.9.0
go.uber.org/mock 0.5.2 0.6.0
k8s.io/kubectl 0.33.4 0.33.12
sigs.k8s.io/aws-iam-authenticator 0.6.13 0.7.17
sigs.k8s.io/cluster-api 1.11.1 1.11.11
github.com/aws/aws-sdk-go-v2/service/eventbridge 1.39.3 1.46.5
github.com/aws/aws-sdk-go-v2/service/servicequotas 1.21.4 1.35.5
github.com/aws/aws-sdk-go-v2/service/sqs 1.38.8 1.43.2

Bumps the all-go-mod-patch-and-minor group with 6 updates in the /hack/tools directory:

Package From To
github.com/itchyny/gojq 0.12.17 0.12.19
github.com/mikefarah/yq/v4 4.48.1 4.53.2
sigs.k8s.io/controller-runtime/tools/setup-envtest 0.0.0-20240923090159-236e448db12c 0.24.1
sigs.k8s.io/controller-tools 0.19.0 0.21.0
sigs.k8s.io/kind 0.30.0 0.32.0
sigs.k8s.io/kustomize/kustomize/v5 5.8.0 5.8.1

Updates github.com/apparentlymart/go-cidr from 1.1.0 to 1.1.1

Commits
  • 5730b04 SubnetBig returns error for negative subnet number
  • fab7bb4 HostBig: Don't crash for out-of-range hostnum greater than max uint64
  • e4ff799 Update doc comment spacing for newer gofmt behavior
  • See full diff in compare view

Updates github.com/aws/amazon-vpc-cni-k8s from 1.15.5 to 1.22.1

Release notes

Sourced from github.com/aws/amazon-vpc-cni-k8s's releases.

v1.22.1

What's Changed

Amazon VPC CNI v1.22.1 introduces enhanced subnet discovery, allowing customers to separate pod and node subnets and apply dedicated security groups to pods on secondary ENIs.

⚠️ IAM Policy Update Required

The enhanced subnet discovery feature (enabled by default with ENABLE_SUBNET_DISCOVERY=true) requires ec2:DescribeSubnets and ec2:DescribeSecurityGroups permissions.

Without these permissions, aws-node will fail to start (#3704, #3705).

Who needs to take action:

  • IPv6 clusters — the customer-managed IAM policy does not include ec2:DescribeSubnets or ec2:DescribeSecurityGroups
  • Third-party IAM management (Terraform, Pulumi, CDK, etc.) — if your tool manages the VPC CNI IAM role independently, add both permissions before upgrading

Add the following to your CNI IAM policy:

{
    "Effect": "Allow",
    "Action": [
        "ec2:DescribeSubnets",
        "ec2:DescribeSecurityGroups"
    ],
    "Resource": "*"
}

Note: The AWS managed policy AmazonEKS_CNI_Policy already includes both permissions. If you are using the managed policy on an IPv4 cluster, no action is needed.

Alternatively, if you do not need subnet discovery, you can set ENABLE_SUBNET_DISCOVERY=false to disable the feature and avoid the new permission requirement.

Subnet Discovery

VPC CNI now supports advanced subnet selection for secondary ENIs:

  • Tag subnets with kubernetes.io/role/cni=1 to include them for pod ENI allocation
  • Tag subnets with kubernetes.io/role/cni=0 to exclude them (including the node's primary subnet)
  • Tag security groups with kubernetes.io/role/cni=1 to apply custom security groups to ENIs in secondary subnets
  • Use cni.networking.k8s.aws/cluster/<cluster-name> tags to scope subnets to specific clusters in multi-cluster VPCs

This feature is enabled by default via ENABLE_SUBNET_DISCOVERY=true.

Features

Full Changelog: aws/amazon-vpc-cni-k8s@v1.21.2...v1.22.1

To manually apply this release:

... (truncated)

Changelog

Sourced from github.com/aws/amazon-vpc-cni-k8s's changelog.

v1.22.1

  • feat: Enhanced subnet discovery - allow customers to exclude specific subnets from pod allocation by tagging with kubernetes.io/role/cni=0 and include subnets with kubernetes.io/role/cni=1
  • feat: Custom security groups for pods on secondary ENIs - tag security groups with kubernetes.io/role/cni=1 to apply them to ENIs in discovered subnets
  • feat: Cluster-specific subnet filtering using cni.networking.k8s.aws/cluster/<cluster-name> tag for multi-cluster VPC environments
  • feat: Primary ENI subnet exclusion - when primary subnet is tagged with cni=0, new ENIs are created only in secondary subnets

v1.21.2

  • Bug fixes and improvements
  • Bump Network Policy Agent to v1.3.5 - Removing CPE CRD checks as the CRD should be installed by default

v1.21.1

  • Bug fix for Network Policy Agent

v1.21.0

v1.20.5

v1.20.4

... (truncated)

Commits
  • 5359e6b Merge pull request #3703 from haouc/release-1.22-v1.22.1
  • 882a769 Adding CNI v1.22.1 release
  • 24f617d Merge pull request #3666 from jaydeokar/create_eni_with_settings
  • a893469 Getting settings from primary ENI
  • c8320c8 fix: use awshttp.BuildableClient in NewAWSSDKHTTPClient to prevent panic in a...
  • ed77a09 Migrate subnet cluster tag prefix and fix primary subnet exclusion logic (#3647)
  • a014aea test: improve custom networking integration tests (#3668)
  • 80fc25e test: improve TestNew_SetsHTTPClientTimeout to actually assert timeout is set...
  • 5387971 fix: prevent nil pointer panic in PodLogs when Stream fails (#3671)
  • 7a21e50 Add aws sdk http timeout (#3649)
  • Additional commits viewable in compare view

Updates github.com/aws/aws-lambda-go from 1.41.0 to 1.54.0

Release notes

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

v1.54.0

What's Changed

New Contributors

Full Changelog: aws/aws-lambda-go@v1.54.0...v1.53.0

v1.53.0

What's Changed

New Contributors

Full Changelog: aws/aws-lambda-go@v1.53.0...v1.52.0

v1.52.0

What's Changed

New Contributors

Full Changelog: aws/aws-lambda-go@v1.51.2...v1.52.0

v1.51.2

What's Changed

New Contributors

Full Changelog: aws/aws-lambda-go@v1.51.1...v1.51.2

v1.51.1

What's Changed

Full Changelog: aws/aws-lambda-go@v1.51.0...v1.51.1

v1.51.0

What's Changed

... (truncated)

Commits
  • ca19f6f Allow ClientContext.Custom unmarshaling for non-string (JSON) values (#620)
  • 9c32960 Merge pull request #619 from maximrub/inbound-federation
  • ebe38d9 add support for Cognito Inbound federation Lambda trigger
  • 71624ac Fix spelling typos (#616)
  • 33e4dc3 Update workflows for go 1.26 (#617)
  • e1cb461 Merge pull request #612 from yhamano0312/feat/add-s3-event-fields
  • a66ce2d Merge branch 'main' into feat/add-s3-event-fields
  • 9dac8a5 Add structured logging helper (#614)
  • 6252f73 fix: always return PhysicalResourceID for CFn CustomResources (#613)
  • be52e48 feat: add lifecycle event data structure and corresponding test for S3 events
  • Additional commits viewable in compare view

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

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.31.12 to 1.32.12

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.18.16 to 1.19.12

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/s3/manager from 1.19.12 to 1.22.25

Commits

Updates github.com/aws/aws-sdk-go-v2/service/autoscaling from 1.52.4 to 1.64.3

Commits

Updates github.com/aws/aws-sdk-go-v2/service/cloudtrail from 1.52.0 to 1.56.3

Commits

Updates github.com/aws/aws-sdk-go-v2/service/configservice from 1.56.0 to 1.64.0

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ec2 from 1.288.0 to 1.296.0

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ecrpublic from 1.36.0 to 1.39.5

Commits

Updates github.com/aws/aws-sdk-go-v2/service/efs from 1.39.0 to 1.42.0

Commits

Updates github.com/aws/aws-sdk-go-v2/service/eks from 1.64.0 to 1.81.1

Commits

Updates github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing from 1.29.6 to 1.34.4

Commits

Updates github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 from 1.45.2 to 1.55.3

Commits
  • 6b53348 Release 2024-10-28
  • 784d2d3 Regenerated Clients
  • 7258bd2 Update endpoints model
  • f322198 Update API model
  • b65b80a Merge pull request #2852 from RanVaknin/signature-header-parsing-fix
  • 803614d Fixing changelog description and implementation to use TrimSpace
  • b12c8cf adding changelog
  • f0caa97 patching GetSignedRequestSignature to cover edge cases with the signature
  • e058903 drop service/nimble (#2851)
  • 896793a Release 2024-10-25
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2/service/iam from 1.32.0 to 1.53.6

Commits

Updates github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi from 1.26.6 to 1.33.2

Commits

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

Commits

Updates github.com/aws/aws-sdk-go-v2/service/secretsmanager from 1.28.6 to 1.42.2

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ssm from 1.59.1 to 1.69.2

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sts from 1.38.6 to 1.43.2

Commits
  • b4d02c5 Release 2026-06-02
  • 48e375b Regenerated Clients
  • b8a4fc1 Update API model
  • e8627b4 Merge pull request #3430 from aws/fix-remove-ioutil
  • 4e258a3 chore: update changelog description per review
  • e1176df chore: add changelog entry
  • a157f15 chore: regenerate SDK with new smithy-go
  • 0d4a893 chore: bump SMITHY_GO_CODEGEN_VERSION for ioutil cleanup
  • 858d954 fix: remove deprecated io/ioutil from codegen templates
  • 35a3c50 Release 2026-06-01
  • Additional commits viewable in compare view

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

Release notes

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

v1.25.0

Release (2026-04-15)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.25.0
    • Feature: Add support for endpointBdd trait
Changelog

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

Release (2026-06-04)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.1
    • Bug Fix: Fixed a deserialization failure in all protocols when encountering a union with explicit null members.
    • Bug Fix: Fixed a panic when deserializing nested unions in JSON- and CBOR-based protocols.

Release (2026-06-02)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.27.0
    • Feature: Add APIs for schema-based serialization.
    • Feature: Add support for all current AWS and Smithy protocols.
    • Bug Fix: Enforce max nesting depth of 128 on CBOR payloads.
  • github.com/aws/smithy-go/aws-http-auth: v1.2.0
    • Feature: Add event stream signer.

Release (2026-05-27)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.26.0
    • Feature: Add StringSlice to endpoint rulesfn.

Release (2026-04-23)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.25.1
    • Bug Fix: Fixed a memory leak in the LRU cache implementation used by some AWS services.
    • Description has been truncated

… 56 updates

Bumps the all-go-mod-patch-and-minor group with 26 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/apparentlymart/go-cidr](https://github.com/apparentlymart/go-cidr) | `1.1.0` | `1.1.1` |
| [github.com/aws/amazon-vpc-cni-k8s](https://github.com/aws/amazon-vpc-cni-k8s) | `1.15.5` | `1.22.1` |
| [github.com/aws/aws-lambda-go](https://github.com/aws/aws-lambda-go) | `1.41.0` | `1.54.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.5` | `1.41.12` |
| [github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://github.com/aws/aws-sdk-go-v2) | `1.19.12` | `1.22.25` |
| [github.com/aws/aws-sdk-go-v2/service/cloudtrail](https://github.com/aws/aws-sdk-go-v2) | `1.52.0` | `1.56.3` |
| [github.com/aws/aws-sdk-go-v2/service/configservice](https://github.com/aws/aws-sdk-go-v2) | `1.56.0` | `1.64.0` |
| [github.com/aws/aws-sdk-go-v2/service/ecrpublic](https://github.com/aws/aws-sdk-go-v2) | `1.36.0` | `1.39.5` |
| [github.com/aws/aws-sdk-go-v2/service/efs](https://github.com/aws/aws-sdk-go-v2) | `1.39.0` | `1.42.0` |
| [github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing](https://github.com/aws/aws-sdk-go-v2) | `1.29.6` | `1.34.4` |
| [github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2](https://github.com/aws/aws-sdk-go-v2) | `1.45.2` | `1.55.3` |
| [github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.33.2` |
| [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2) | `1.28.6` | `1.42.2` |
| [github.com/aws/aws-sdk-go-v2/service/ssm](https://github.com/aws/aws-sdk-go-v2) | `1.59.1` | `1.69.2` |
| [github.com/coreos/ignition/v2](https://github.com/coreos/ignition) | `2.24.0` | `2.26.0` |
| [github.com/gofrs/flock](https://github.com/gofrs/flock) | `0.8.1` | `0.13.0` |
| [github.com/sergi/go-diff](https://github.com/sergi/go-diff) | `1.3.1` | `1.4.0` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.9.1` | `1.10.2` |
| [github.com/zgalor/weberr](https://github.com/zgalor/weberr) | `0.8.2` | `0.9.0` |
| [go.uber.org/mock](https://github.com/uber/mock) | `0.5.2` | `0.6.0` |
| [k8s.io/kubectl](https://github.com/kubernetes/kubectl) | `0.33.4` | `0.33.12` |
| [sigs.k8s.io/aws-iam-authenticator](https://github.com/kubernetes-sigs/aws-iam-authenticator) | `0.6.13` | `0.7.17` |
| [sigs.k8s.io/cluster-api](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.11` |
| [github.com/aws/aws-sdk-go-v2/service/eventbridge](https://github.com/aws/aws-sdk-go-v2) | `1.39.3` | `1.46.5` |
| [github.com/aws/aws-sdk-go-v2/service/servicequotas](https://github.com/aws/aws-sdk-go-v2) | `1.21.4` | `1.35.5` |
| [github.com/aws/aws-sdk-go-v2/service/sqs](https://github.com/aws/aws-sdk-go-v2) | `1.38.8` | `1.43.2` |

Bumps the all-go-mod-patch-and-minor group with 6 updates in the /hack/tools directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |
| [github.com/mikefarah/yq/v4](https://github.com/mikefarah/yq) | `4.48.1` | `4.53.2` |
| [sigs.k8s.io/controller-runtime/tools/setup-envtest](https://github.com/kubernetes-sigs/controller-runtime) | `0.0.0-20240923090159-236e448db12c` | `0.24.1` |
| [sigs.k8s.io/controller-tools](https://github.com/kubernetes-sigs/controller-tools) | `0.19.0` | `0.21.0` |
| [sigs.k8s.io/kind](https://github.com/kubernetes-sigs/kind) | `0.30.0` | `0.32.0` |
| [sigs.k8s.io/kustomize/kustomize/v5](https://github.com/kubernetes-sigs/kustomize) | `5.8.0` | `5.8.1` |



Updates `github.com/apparentlymart/go-cidr` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/apparentlymart/go-cidr/releases)
- [Commits](apparentlymart/go-cidr@v1.1.0...v1.1.1)

Updates `github.com/aws/amazon-vpc-cni-k8s` from 1.15.5 to 1.22.1
- [Release notes](https://github.com/aws/amazon-vpc-cni-k8s/releases)
- [Changelog](https://github.com/aws/amazon-vpc-cni-k8s/blob/master/CHANGELOG.md)
- [Commits](aws/amazon-vpc-cni-k8s@v1.15.5...v1.22.1)

Updates `github.com/aws/aws-lambda-go` from 1.41.0 to 1.54.0
- [Release notes](https://github.com/aws/aws-lambda-go/releases)
- [Commits](aws/aws-lambda-go@v1.41.0...v1.54.0)

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

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.31.12 to 1.32.12
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.31.12...config/v1.32.12)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.18.16 to 1.19.12
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.18.16...service/sqs/v1.19.12)

Updates `github.com/aws/aws-sdk-go-v2/feature/s3/manager` from 1.19.12 to 1.22.25
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/sqs/v1.19.12...feature/s3/manager/v1.22.25)

Updates `github.com/aws/aws-sdk-go-v2/service/autoscaling` from 1.52.4 to 1.64.3
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ssm/v1.52.4...service/iot/v1.64.3)

Updates `github.com/aws/aws-sdk-go-v2/service/cloudtrail` from 1.52.0 to 1.56.3
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.52.0...service/ssm/v1.56.3)

Updates `github.com/aws/aws-sdk-go-v2/service/configservice` from 1.56.0 to 1.64.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.56.0...service/s3/v1.64.0)

Updates `github.com/aws/aws-sdk-go-v2/service/ec2` from 1.288.0 to 1.296.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ec2/v1.288.0...service/ec2/v1.296.0)

Updates `github.com/aws/aws-sdk-go-v2/service/ecrpublic` from 1.36.0 to 1.39.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.36.0...v1.39.5)

Updates `github.com/aws/aws-sdk-go-v2/service/efs` from 1.39.0 to 1.42.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.39.0...service/s3/v1.42.0)

Updates `github.com/aws/aws-sdk-go-v2/service/eks` from 1.64.0 to 1.81.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.64.0...service/ecs/v1.81.1)

Updates `github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing` from 1.29.6 to 1.34.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.29.6...service/mq/v1.34.4)

Updates `github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2` from 1.45.2 to 1.55.3
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/kms/v1.45.2...service/ssm/v1.55.3)

Updates `github.com/aws/aws-sdk-go-v2/service/iam` from 1.32.0 to 1.53.6
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.32.0...service/ecs/v1.53.6)

Updates `github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi` from 1.26.6 to 1.33.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.26.6...service/mq/v1.33.2)

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

Updates `github.com/aws/aws-sdk-go-v2/service/secretsmanager` from 1.28.6 to 1.42.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.28.6...service/s3/v1.42.2)

Updates `github.com/aws/aws-sdk-go-v2/service/ssm` from 1.59.1 to 1.69.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ssm/v1.59.1...service/ecs/v1.69.2)

Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.38.6 to 1.43.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/sts/v1.38.6...service/amp/v1.43.2)

Updates `github.com/aws/smithy-go` from 1.24.2 to 1.27.1
- [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.24.2...v1.27.1)

Updates `github.com/coreos/ignition/v2` from 2.24.0 to 2.26.0
- [Release notes](https://github.com/coreos/ignition/releases)
- [Changelog](https://github.com/coreos/ignition/blob/main/docs/release-notes.md)
- [Commits](coreos/ignition@v2.24.0...v2.26.0)

Updates `github.com/gofrs/flock` from 0.8.1 to 0.13.0
- [Release notes](https://github.com/gofrs/flock/releases)
- [Commits](gofrs/flock@v0.8.1...v0.13.0)

Updates `github.com/onsi/ginkgo/v2` from 2.23.4 to 2.25.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.23.4...v2.25.1)

Updates `github.com/onsi/gomega` from 1.38.0 to 1.38.1
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.38.0...v1.38.1)

Updates `github.com/sergi/go-diff` from 1.3.1 to 1.4.0
- [Commits](sergi/go-diff@v1.3.1...v1.4.0)

Updates `github.com/sirupsen/logrus` from 1.9.3 to 1.9.4
- [Release notes](https://github.com/sirupsen/logrus/releases)
- [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md)
- [Commits](sirupsen/logrus@v1.9.3...v1.9.4)

Updates `github.com/spf13/cobra` from 1.9.1 to 1.10.2
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.9.1...v1.10.2)

Updates `github.com/zgalor/weberr` from 0.8.2 to 0.9.0
- [Release notes](https://github.com/zgalor/weberr/releases)
- [Commits](openshift-online/weberr@v0.8.2...v0.9.0)

Updates `go.uber.org/mock` from 0.5.2 to 0.6.0
- [Release notes](https://github.com/uber/mock/releases)
- [Changelog](https://github.com/uber-go/mock/blob/main/CHANGELOG.md)
- [Commits](uber-go/mock@v0.5.2...v0.6.0)

Updates `golang.org/x/crypto` from 0.46.0 to 0.47.0
- [Commits](golang/crypto@v0.46.0...v0.47.0)

Updates `golang.org/x/text` from 0.32.0 to 0.33.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.32.0...v0.33.0)

Updates `k8s.io/api` from 0.33.4 to 0.34.1
- [Commits](kubernetes/api@v0.33.4...v0.34.1)

Updates `k8s.io/apiextensions-apiserver` from 0.33.4 to 0.34.0
- [Release notes](https://github.com/kubernetes/apiextensions-apiserver/releases)
- [Commits](kubernetes/apiextensions-apiserver@v0.33.4...v0.34.0)

Updates `k8s.io/apimachinery` from 0.33.4 to 0.34.1
- [Commits](kubernetes/apimachinery@v0.33.4...v0.34.1)

Updates `k8s.io/cli-runtime` from 0.33.4 to 0.34.1
- [Commits](kubernetes/cli-runtime@v0.33.4...v0.34.1)

Updates `k8s.io/client-go` from 0.33.4 to 0.34.1
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.33.4...v0.34.1)

Updates `k8s.io/component-base` from 0.33.4 to 0.34.0
- [Commits](kubernetes/component-base@v0.33.4...v0.34.0)

Updates `k8s.io/kubectl` from 0.33.4 to 0.33.12
- [Commits](kubernetes/kubectl@v0.33.4...v0.33.12)

Updates `sigs.k8s.io/aws-iam-authenticator` from 0.6.13 to 0.7.17
- [Release notes](https://github.com/kubernetes-sigs/aws-iam-authenticator/releases)
- [Changelog](https://github.com/kubernetes-sigs/aws-iam-authenticator/blob/master/docs/RELEASE.md)
- [Commits](kubernetes-sigs/aws-iam-authenticator@v0.6.13...v0.7.17)

Updates `sigs.k8s.io/cluster-api` from 1.11.1 to 1.11.11
- [Release notes](https://github.com/kubernetes-sigs/cluster-api/releases)
- [Commits](kubernetes-sigs/cluster-api@v1.11.1...v1.11.11)

Updates `sigs.k8s.io/controller-runtime` from 0.21.0 to 0.22.1
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-runtime@v0.21.0...v0.22.1)

Updates `github.com/aws/aws-sdk-go-v2/service/cloudformation` from 1.50.0 to 1.71.8
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.50.0...service/cloudformation/v1.71.8)

Updates `github.com/aws/aws-sdk-go-v2/service/eventbridge` from 1.39.3 to 1.46.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.39.3...service/iot/v1.46.5)

Updates `github.com/aws/aws-sdk-go-v2/service/servicequotas` from 1.21.4 to 1.35.5
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/pi/v1.21.4...service/pi/v1.35.5)

Updates `github.com/aws/aws-sdk-go-v2/service/sqs` from 1.38.8 to 1.43.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/sts/v1.38.8...service/amp/v1.43.2)

Updates `k8s.io/apiserver` from 0.33.4 to 0.34.0
- [Commits](kubernetes/apiserver@v0.33.4...v0.34.0)

Updates `k8s.io/apimachinery` from 0.34.1 to 0.34.8
- [Commits](kubernetes/apimachinery@v0.33.4...v0.34.1)

Updates `github.com/itchyny/gojq` from 0.12.17 to 0.12.19
- [Release notes](https://github.com/itchyny/gojq/releases)
- [Changelog](https://github.com/itchyny/gojq/blob/main/CHANGELOG.md)
- [Commits](itchyny/gojq@v0.12.17...v0.12.19)

Updates `github.com/mikefarah/yq/v4` from 4.48.1 to 4.53.2
- [Release notes](https://github.com/mikefarah/yq/releases)
- [Changelog](https://github.com/mikefarah/yq/blob/master/release_notes.txt)
- [Commits](mikefarah/yq@v4.48.1...v4.53.2)

Updates `k8s.io/code-generator` from 0.34.0 to 0.34.8
- [Commits](kubernetes/code-generator@v0.34.0...v0.34.8)

Updates `sigs.k8s.io/controller-runtime/tools/setup-envtest` from 0.0.0-20240923090159-236e448db12c to 0.24.1
- [Release notes](https://github.com/kubernetes-sigs/controller-runtime/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-runtime/blob/main/RELEASE.md)
- [Commits](https://github.com/kubernetes-sigs/controller-runtime/commits/v0.24.1)

Updates `sigs.k8s.io/controller-tools` from 0.19.0 to 0.21.0
- [Release notes](https://github.com/kubernetes-sigs/controller-tools/releases)
- [Changelog](https://github.com/kubernetes-sigs/controller-tools/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/controller-tools@v0.19.0...v0.21.0)

Updates `sigs.k8s.io/kind` from 0.30.0 to 0.32.0
- [Release notes](https://github.com/kubernetes-sigs/kind/releases)
- [Changelog](https://github.com/kubernetes-sigs/kind/blob/main/RELEASE.md)
- [Commits](kubernetes-sigs/kind@v0.30.0...v0.32.0)

Updates `sigs.k8s.io/kustomize/kustomize/v5` from 5.8.0 to 5.8.1
- [Release notes](https://github.com/kubernetes-sigs/kustomize/releases)
- [Commits](kubernetes-sigs/kustomize@kustomize/v5.8.0...kustomize/v5.8.1)

---
updated-dependencies:
- dependency-name: github.com/apparentlymart/go-cidr
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/amazon-vpc-cni-k8s
  dependency-version: 1.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-lambda-go
  dependency-version: 1.54.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.19.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/s3/manager
  dependency-version: 1.22.25
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/autoscaling
  dependency-version: 1.64.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/cloudtrail
  dependency-version: 1.56.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/configservice
  dependency-version: 1.64.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ec2
  dependency-version: 1.296.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ecrpublic
  dependency-version: 1.39.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/efs
  dependency-version: 1.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/eks
  dependency-version: 1.81.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing
  dependency-version: 1.34.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2
  dependency-version: 1.55.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/iam
  dependency-version: 1.53.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi
  dependency-version: 1.33.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-version: 1.103.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/secretsmanager
  dependency-version: 1.42.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ssm
  dependency-version: 1.69.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sts
  dependency-version: 1.43.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/smithy-go
  dependency-version: 1.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/coreos/ignition/v2
  dependency-version: 2.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/gofrs/flock
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.38.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/sergi/go-diff
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/sirupsen/logrus
  dependency-version: 1.9.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/spf13/cobra
  dependency-version: 1.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/zgalor/weberr
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: go.uber.org/mock
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/crypto
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: golang.org/x/text
  dependency-version: 0.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/api
  dependency-version: 0.34.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiextensions-apiserver
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.34.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/cli-runtime
  dependency-version: 0.34.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/client-go
  dependency-version: 0.34.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/component-base
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/kubectl
  dependency-version: 0.33.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/aws-iam-authenticator
  dependency-version: 0.7.17
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/cluster-api
  dependency-version: 1.11.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/controller-runtime
  dependency-version: 0.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/cloudformation
  dependency-version: 1.71.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/eventbridge
  dependency-version: 1.46.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/servicequotas
  dependency-version: 1.35.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sqs
  dependency-version: 1.43.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apiserver
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.34.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/itchyny/gojq
  dependency-version: 0.12.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/mikefarah/yq/v4
  dependency-version: 4.53.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: k8s.io/code-generator
  dependency-version: 0.34.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/controller-runtime/tools/setup-envtest
  dependency-version: 0.24.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/controller-tools
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/kind
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: sigs.k8s.io/kustomize/kustomize/v5
  dependency-version: 5.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added area/dependency Issues or PRs related to dependency changes kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesn't merit a release note. labels Jun 5, 2026
@k8s-ci-robot

Copy link
Copy Markdown
Contributor

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Jun 5, 2026
@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Jun 5, 2026
@k8s-ci-robot k8s-ci-robot requested review from damdo and richardcase June 5, 2026 15:28
@k8s-ci-robot

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign dlipovetsky for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@richardcase

Copy link
Copy Markdown
Member

/retest

@k8s-ci-robot

Copy link
Copy Markdown
Contributor

@dependabot[bot]: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
pull-cluster-api-provider-aws-e2e-blocking 92651f7 link true /test pull-cluster-api-provider-aws-e2e-blocking
pull-cluster-api-provider-aws-build-docker 92651f7 link true /test pull-cluster-api-provider-aws-build-docker
pull-cluster-api-provider-aws-build 92651f7 link true /test pull-cluster-api-provider-aws-build
pull-cluster-api-provider-aws-test 92651f7 link true /test pull-cluster-api-provider-aws-test
pull-cluster-api-provider-aws-verify 92651f7 link true /test pull-cluster-api-provider-aws-verify

Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@dependabot @github

dependabot Bot commented on behalf of github Jun 8, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #6043.

@dependabot dependabot Bot closed this Jun 8, 2026
@dependabot dependabot Bot deleted the dependabot/go_modules/all-go-mod-patch-and-minor-154cdaaf0e branch June 8, 2026 10:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area/dependency Issues or PRs related to dependency changes cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. kind/cleanup Categorizes issue or PR as related to cleaning up code, process, or technical debt. needs-priority ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesn't merit a release note. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants