Skip to content

fix(deps): update all dependencies#837

Merged
adrianriobo merged 1 commit into
mainfrom
renovate/all
Jun 25, 2026
Merged

fix(deps): update all dependencies#837
adrianriobo merged 1 commit into
mainfrom
renovate/all

Conversation

@renovate

@renovate renovate Bot commented Jun 16, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/checkout action major v6v7 age confidence
actions/checkout action major v6.0.3v7.0.0 age confidence
actions/runner minor 2.334.02.335.1 age confidence
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob require minor v1.7.0v1.8.0 age confidence
github.com/IBM-Cloud/power-go-client require minor v1.15.0v1.16.2 age confidence
github.com/IBM/go-sdk-core/v5 require minor v5.21.4v5.22.0 age confidence
github.com/IBM/vpc-go-sdk require minor v0.84.0v0.86.0 age confidence
github.com/alecthomas/chroma/v2 indirect minor v2.26.1v2.27.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ec2 require minor v1.305.2v1.308.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ecs require minor v1.82.3v1.85.0 age confidence
github.com/aws/aws-sdk-go-v2/service/s3 require minor v1.103.2v1.104.0 age confidence
github.com/charmbracelet/ultraviolet indirect digest 6cf7526f39628c age confidence
github.com/charmbracelet/x/exp/golden indirect digest cd19a2b2565617 age confidence
github.com/cyphar/filepath-securejoin indirect minor v0.6.1v0.7.0 age confidence
github.com/evertras/bubble-table indirect minor v0.19.2v0.22.3 age confidence
github.com/golangci/gofmt indirect digest d62b90ee7be49a age confidence
github.com/pelletier/go-toml/v2 indirect minor v2.3.1v2.4.2 age confidence
github.com/prometheus/common indirect minor v0.68.1v0.69.0 age confidence
github.com/pulumi/pulumi-aws-native/sdk require minor v1.68.0v1.70.0 age confidence
github.com/pulumi/pulumi-aws/sdk/v7 require minor v7.32.0v7.34.0 age confidence
github.com/pulumi/pulumi-kubernetes/sdk/v4 require minor v4.31.1v4.32.0 age confidence
github.com/pulumi/pulumi/sdk/v3 require minor v3.246.0v3.248.0 age confidence
gitlab-org/gitlab-runner minor 19.0.119.1.0 age confidence
go.opentelemetry.io/collector/featuregate indirect minor v1.59.0v1.61.0 age confidence
go.opentelemetry.io/collector/pdata indirect minor v1.59.0v1.61.0 age confidence
golang.org/x/crypto indirect minor v0.52.0v0.53.0 age confidence
golang.org/x/exp/typeparams indirect digest 055de63c48552f age confidence
golang.org/x/mod require minor v0.36.0v0.37.0 age confidence
golang.org/x/net indirect minor v0.55.0v0.56.0 age confidence
golang.org/x/sys indirect minor v0.45.0v0.46.0 age confidence
golang.org/x/term indirect minor v0.43.0v0.44.0 age confidence
golang.org/x/text indirect minor v0.37.0v0.38.0 age confidence
golang.org/x/tools indirect minor v0.45.0v0.46.0 age confidence
google.golang.org/genproto/googleapis/api indirect digest 3dc84a4b703f56 age confidence
google.golang.org/genproto/googleapis/rpc indirect digest 3dc84a4b703f56 age confidence
k8s.io/kube-openapi indirect digest 865597e8f3fa49 age confidence
k8s.io/utils indirect digest ff6756fa95e086 age confidence
pulumi/pulumi minor 3.245.03.248.0 age confidence
pulumi/pulumi-aws minor v7.32.0v7.34.0 age confidence
pulumi/pulumi-aws-native minor v1.68.0v1.70.0 age confidence
registry.access.redhat.com/hi/core-runtime final digest c85f5e002ca768
registry.access.redhat.com/ubi9/go-toolset stage digest d36470d6fdc004

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

actions/checkout (actions/checkout)

v7.0.0

Compare Source

v7

Compare Source

actions/runner (actions/runner)

v2.335.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/runner@v2.334.0...v2.335.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-win-x64-2.335.1.zip -OutFile actions-runner-win-x64-2.335.1.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.335.1.zip", "$PWD")
Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-win-arm64-2.335.1.zip -OutFile actions-runner-win-arm64-2.335.1.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.335.1.zip", "$PWD")
OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-osx-x64-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.335.1.tar.gz
OSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-osx-arm64-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.335.1.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-linux-x64-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.335.1.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-linux-arm64-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.335.1.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-linux-arm-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.335.1.tar.gz
Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.335.1.zip eb65c95277af42bcf3778a799c41359d224ba2a67b4de26b7cea1729b09c803d
  • actions-runner-win-arm64-2.335.1.zip 6cd1409daad8be4f77deb0c677ceb6153fccbab2e33af4fdc1b3465bd42ec742
  • actions-runner-osx-x64-2.335.1.tar.gz b2fe57b2ae5b0bc1605f9fc0723c07eedf06167321d3478ce0440f15e5b0a010
  • actions-runner-osx-arm64-2.335.1.tar.gz e1a9bc7a3661e06fa0b129d15c2064fe65dc81a431001d8958a9db1409b73769
  • actions-runner-linux-x64-2.335.1.tar.gz 4ef2f25285f0ae4477f1fe1e346db76d2f3ebf03824e2ddd1973a2819bf6c8cf
  • actions-runner-linux-arm64-2.335.1.tar.gz 6d1e85bfd1a506a8b17c1f1b9b57dba458ffed90898799aaa9f599520b0d9207
  • actions-runner-linux-arm-2.335.1.tar.gz d9810476ceebb6739913ed16afd5c61664e53312a444ee5226e9010a4219a864

v2.335.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/runner@v2.334.0...v2.335.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.335.0/actions-runner-win-x64-2.335.0.zip -OutFile actions-runner-win-x64-2.335.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.335.0.zip", "$PWD")
Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.335.0/actions-runner-win-arm64-2.335.0.zip -OutFile actions-runner-win-arm64-2.335.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.335.0.zip", "$PWD")
OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.0/actions-runner-osx-x64-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.335.0.tar.gz
OSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.0/actions-runner-osx-arm64-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.335.0.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.0/actions-runner-linux-x64-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.335.0.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.0/actions-runner-linux-arm64-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.335.0.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.0/actions-runner-linux-arm-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.335.0.tar.gz
Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.335.0.zip 0422df90994cc5e2350238fb2707029fddaa156e7e4562b14e35086f94417e87
  • actions-runner-win-arm64-2.335.0.zip e0f4601ec0822c6a453672e65f6f58c2285b7390376ce00ce001021e15918c98
  • actions-runner-osx-x64-2.335.0.tar.gz c3537857b03fe008fd2fc6f7e9dc12aa9692c32b00c672e425684ca79fed4716
  • actions-runner-osx-arm64-2.335.0.tar.gz a1b382dda2cbb00a5e78fc21e7dbf4dbcf35edf44d6fd8686c8302e6f15cd065
  • actions-runner-linux-x64-2.335.0.tar.gz cf484ecd77f8832103cbf6f6dc4f930cfe93a71cd37895ebda0165fec1fa920b
  • actions-runner-linux-arm64-2.335.0.tar.gz 454b6ff207b90d35a39580ae37854fd68839d0f9af9c5e73b51d7d0842ae2b1c
  • actions-runner-linux-arm-2.335.0.tar.gz 854acd84462ea009f29712d980318af0422151fe5b9fa3b39defd87b3d55b352
IBM-Cloud/power-go-client (github.com/IBM-Cloud/power-go-client)

v1.16.2

Compare Source

What's Changed

Full Changelog: IBM-Cloud/power-go-client@v1.16.1...v1.16.2

v1.16.1

Compare Source

What's Changed

Full Changelog: IBM-Cloud/power-go-client@v1.16.0...v1.16.1

v1.16.0

Compare Source

What's Changed

Full Changelog: IBM-Cloud/power-go-client@v1.15.0...v1.16.0

IBM/go-sdk-core (github.com/IBM/go-sdk-core/v5)

v5.22.0

Compare Source

Features
  • auth: add support for new service version in VPC Instance Auth (#​273) (a4335d5)
IBM/vpc-go-sdk (github.com/IBM/vpc-go-sdk)

v0.86.0

Compare Source

What's Changed

API Version Bump

  • Default API version updated from 2026-06-09 -> 2026-06-16.

New Features

Load Balancer - Advanced Health Checks

New support for advanced HTTP/HTTPS health check configuration on load balancer pools. This feature is gated by the new advanced_health_checks_supported flag on the load balancer and its profile.

New types added:

Type Description
LoadBalancerPoolHealthMonitorTypeHttphttpsRequest HTTP request config (body, headers, method) used for health checks
LoadBalancerPoolHealthMonitorTypeHttphttpsRequestHeader A single HTTP request header (field + value) for health checks
LoadBalancerPoolHealthMonitorTypeHttphttpsRequestHeaderPrototype Prototype for creating a request header
LoadBalancerPoolHealthMonitorTypeHttphttpsRequestPatch Patch type to update HTTP request config on a health monitor
LoadBalancerPoolHealthMonitorTypeHttphttpsRequestPrototype Prototype (discriminated union) for setting request config when creating a health monitor
LoadBalancerPoolHealthMonitorTypeHttphttpsRequestPrototypeLoadBalancerPoolHealthMonitorTypeHttphttpsRequestGetPrototype GET-method variant of the request prototype
LoadBalancerPoolHealthMonitorTypeHttphttpsRequestPrototypeLoadBalancerPoolHealthMonitorTypeHttphttpsRequestPostPrototype POST-method variant of the request prototype
LoadBalancerPoolHealthMonitorTypeHttphttpsResponse HTTP response config (status codes, body regex) for health checks
LoadBalancerPoolHealthMonitorTypeHttphttpsResponsePatch Patch type to update HTTP response config on a health monitor
LoadBalancerPoolHealthMonitorTypeHttphttpsResponsePrototype Prototype for setting response config when creating a health monitor

Updated structs:

  • LoadBalancerPoolHealthMonitor - added optional Request and Response fields.
  • LoadBalancerPoolHealthMonitorPatch - added optional Request and Response patch fields.
  • LoadBalancerPoolHealthMonitorPrototype - added optional Request and Response prototype fields.

Load Balancer - FQDN Pool Members

New support for specifying pool members by their fully qualified domain name (FQDN), gated by the new fqdn_pool_members_supported flag.

New types added:

Type Description
LoadBalancerPoolMemberTargetFqdn Represents a pool member target identified by FQDN
LoadBalancerPoolMemberTargetPrototypeFqdn Prototype for creating a pool member target using an FQDN; constructor: NewLoadBalancerPoolMemberTargetPrototypeFqdn

Updated structs:

  • LoadBalancerPoolMemberTarget - added Fqdn field; added LoadBalancerPoolMemberTargetFqdn to the list of discriminator variants.
  • LoadBalancerPoolMemberTargetPrototype - added Fqdn field; added LoadBalancerPoolMemberTargetPrototypeFqdn variant.

Load Balancer - New Profile Capability Fields

Two new profile-level capability descriptors with fixed / dependent discriminated subtypes:

Type Description
LoadBalancerProfileAdvancedHealthCheckSupported Indicates whether advanced health checks are supported (base)
LoadBalancerProfileAdvancedHealthCheckSupportedFixed Fixed value variant
LoadBalancerProfileAdvancedHealthCheckSupportedDependent Dependent-on-config variant
LoadBalancerProfileFqdnSupported Indicates whether FQDN pool members are supported (base)
LoadBalancerProfileFqdnSupportedFixed Fixed value variant
LoadBalancerProfileFqdnSupportedDependent Dependent-on-config variant

Updated struct: LoadBalancerProfile - added fields:

  • AdvancedHealthChecksSupported (LoadBalancerProfileAdvancedHealthCheckSupportedIntf)
  • FqdnPoolMembersSupported (LoadBalancerProfileFqdnSupportedIntf)

Updated struct: LoadBalancer - added fields:

  • AdvancedHealthChecksSupported *bool - indicates whether this load balancer supports advanced health checks.
  • FqdnPoolMembersSupported *bool - indicates whether this load balancer supports FQDN-based pool members.

Load Balancer - starts_with Condition for Listener Policy Rules

A new starts_with condition constant has been added to listener policy rules:

  • CreateLoadBalancerListenerPolicyRuleOptionsConditionStartsWithConst = "starts_with"
  • LoadBalancerListenerPolicyRuleConditionStartsWithConst = "starts_with"
  • LoadBalancerListenerPolicyRulePatchConditionStartsWithConst = "starts_with"
  • LoadBalancerListenerPolicyRulePrototypeConditionStartsWithConst = "starts_with"

Load Balancer Pool - If-Match Header on Update

UpdateLoadBalancerPoolWithContext now supports optimistic concurrency control via the If-Match header:

  • UpdateLoadBalancerPoolOptions has a new IfMatch *string field.
  • New setter: SetIfMatch(ifMatch string).
  • If provided, the header If-Match: <etag> is included in the outbound PATCH request.

Documentation / Clarifications

  • BareMetalServerInitializationPrototype.Keys: Doc updated - Windows images now explicitly require at least one SSH key of type rsa.
  • BareMetalServerInitializationPrototype.UserData: Doc updated to include a link to IBM Cloud user-data documentation.

v0.85.0

Compare Source

What's Changed

BackupPolicyJobReference struct (new)

A new model BackupPolicyJobReference has been introduced to represent a reference to a backup policy job. It carries the following fields:

Field Type Required Description
Deleted *Deleted No Present when the referenced resource has been deleted.
Href *string Yes URL for this backup policy job.
ID *string Yes Unique identifier for this backup policy job.
ResourceType *string Yes Resource type; always "backup_policy_job".

An associated constant BackupPolicyJobReferenceResourceTypeBackupPolicyJobConst and an unmarshaller UnmarshalBackupPolicyJobReference have also been added.


SnapshotConsistencyGroup.BackupPolicyJob field (new)

The SnapshotConsistencyGroup struct now includes an optional BackupPolicyJob *BackupPolicyJobReference field. When present, it identifies the backup policy job that created the snapshot consistency group. Snapshot consistency groups sharing the same backup policy job identifier represent snapshots of the same instance taken across different storage generations.


`ListSnapshotConsisten

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Jun 16, 2026

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: mod upgrade --mod-name=github.com/IBM/go-sdk-core/v5 -t=5
could not load package: err: exit status 1: stderr: go: inconsistent vendoring in /tmp/renovate/repos/github/redhat-developer/mapt:
	github.com/pulumi/pulumi/sdk/v3@v3.248.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/Azure/azure-sdk-for-go/sdk/storage/azblob@v1.8.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/IBM/go-sdk-core/v5@v5.22.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/aws/aws-sdk-go-v2/service/ec2@v1.308.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/aws/aws-sdk-go-v2/service/s3@v1.104.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/pulumi/pulumi-aws-native/sdk@v1.70.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/pulumi/pulumi-aws/sdk/v7@v7.34.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	charm.land/bubbles/v2@v2.1.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	charm.land/bubbletea/v2@v2.0.5: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	charm.land/lipgloss/v2@v2.0.3: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/charmbracelet/ultraviolet@v0.0.0-20260413211237-bd52878bcec2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/charmbracelet/x/termios@v0.1.1: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/charmbracelet/x/windows@v0.2.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/go-git/gcfg/v2@v2.0.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/go-git/go-billy/v6@v6.0.0-alpha.1: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/go-git/go-git/v6@v6.0.0-alpha.4: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	go.opentelemetry.io/contrib/bridges/otelslog@v0.18.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc@v0.19.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	go.opentelemetry.io/otel/log@v0.19.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	go.opentelemetry.io/otel/sdk/log@v0.19.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/evertras/bubble-table@v0.22.3: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/mod@v0.37.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/tools@v0.46.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/charmbracelet/x/exp/golden@v0.0.0-20260622092256-25656177ba8e: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/cyphar/filepath-securejoin@v0.7.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/pelletier/go-toml/v2@v2.4.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	go.opentelemetry.io/collector/featuregate@v1.61.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	go.opentelemetry.io/collector/pdata@v1.61.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	google.golang.org/genproto/googleapis/api@v0.0.0-20260622175928-b703f567277d: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	google.golang.org/genproto/googleapis/rpc@v0.0.0-20260622175928-b703f567277d: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	k8s.io/kube-openapi@v0.0.0-20260624041617-8f3fa4921821: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	k8s.io/utils@v0.0.0-20260617174310-a95e086a2553: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/IBM-Cloud/power-go-client@v1.16.2: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/IBM/vpc-go-sdk@v0.86.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/aws/aws-sdk-go-v2/service/ecs@v1.85.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/pulumi/pulumi-kubernetes/sdk/v4@v4.32.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/crypto@v0.53.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/net@v0.56.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/sys@v0.46.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/term@v0.44.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/text@v0.38.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/Azure/azure-sdk-for-go/sdk/storage/azblob@v1.7.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/IBM-Cloud/power-go-client@v1.15.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/IBM/go-sdk-core/v5@v5.21.4: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/IBM/vpc-go-sdk@v0.84.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/aws/aws-sdk-go-v2/service/ec2@v1.305.2: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/aws/aws-sdk-go-v2/service/ecs@v1.82.3: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/aws/aws-sdk-go-v2/service/s3@v1.103.2: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/cyphar/filepath-securejoin@v0.6.1: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/evertras/bubble-table@v0.19.2: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/pelletier/go-toml/v2@v2.3.1: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/pulumi/pulumi-aws-native/sdk@v1.68.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/pulumi/pulumi-aws/sdk/v7@v7.32.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/pulumi/pulumi-kubernetes/sdk/v4@v4.31.1: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/pulumi/pulumi/sdk/v3@v3.246.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	go.opentelemetry.io/collector/featuregate@v1.59.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	go.opentelemetry.io/collector/pdata@v1.59.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/crypto@v0.52.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/mod@v0.36.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/net@v0.55.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/sys@v0.45.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/term@v0.43.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/text@v0.37.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/tools@v0.45.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	google.golang.org/genproto/googleapis/api@v0.0.0-20260526163538-3dc84a4a5aaa: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	google.golang.org/genproto/googleapis/rpc@v0.0.0-20260526163538-3dc84a4a5aaa: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	k8s.io/kube-openapi@v0.0.0-20260603220949-865597e52e25: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	k8s.io/utils@v0.0.0-20260507154919-ff6756f316d2: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod

	To ignore the vendor directory, use -mod=readonly or -mod=mod.
	To sync the vendor directory, run:
		go mod vendor


File name: tools/go.sum
Command failed: go get -t ./...
go: downloading github.com/golangci/golangci-lint/v2 v2.12.2
go: downloading charm.land/lipgloss/v2 v2.0.4
go: downloading github.com/fatih/color v1.19.0
go: downloading github.com/gofrs/flock v0.13.0
go: downloading github.com/ldez/grignotin v0.10.1
go: downloading github.com/santhosh-tekuri/jsonschema/v6 v6.0.2
go: downloading github.com/charmbracelet/ultraviolet v0.0.0-20260622092850-f39628c8a989
go: downloading github.com/mattn/go-colorable v0.1.15
go: downloading github.com/alecthomas/chroma/v2 v2.27.0
go: downloading github.com/golangci/plugin-module-register v0.1.2
go: downloading github.com/stretchr/testify v1.11.1
go: downloading github.com/go-xmlfmt/xmlfmt v1.1.3
go: downloading github.com/golangci/revgrep v0.8.0
go: downloading github.com/daixiang0/gci v0.14.0
go: downloading github.com/golangci/gofmt v0.0.0-20251215234548-e7be49a5ab4d
go: downloading mvdan.cc/gofumpt v0.10.0
go: downloading github.com/golangci/golines v0.15.0
go: downloading github.com/sourcegraph/go-diff v0.8.0
go: downloading github.com/golangci/swaggoswag v0.0.0-20250504205917-77f2aca3143e
go: downloading go.augendre.info/arangolint v0.4.0
go: downloading github.com/alingse/asasalint v0.0.11
go: downloading github.com/golangci/asciicheck v0.5.0
go: downloading github.com/breml/bidichk v0.3.3
go: downloading github.com/timakin/bodyclose v0.0.0-20260129054331-73d1f95b84b4
go: downloading github.com/lasiar/canonicalheader v1.1.2
go: downloading github.com/ClickHouse/clickhouse-go-linter v1.2.1
go: downloading github.com/sivchari/containedctx v1.0.3
go: downloading github.com/kkHAIKE/contextcheck v1.1.6
go: downloading github.com/karamaru-alpha/copyloopvar v1.2.2
go: downloading github.com/bkielbasa/cyclop v1.2.3
go: downloading gitlab.com/bosi/decorder v0.4.2
go: downloading github.com/OpenPeeDeeP/depguard/v2 v2.2.1
go: downloading github.com/golangci/dupl v0.0.0-20260401084720-c99c5cf5c202
go: downloading github.com/Abirdcfly/dupword v0.1.8
go: downloading github.com/charithe/durationcheck v0.0.11
go: downloading github.com/manuelarte/embeddedstructfieldcheck v0.4.0
go: downloading github.com/Djarvur/go-err113 v0.1.1
go: downloading github.com/kisielk/errcheck v1.20.0
go: downloading github.com/breml/errchkjson v0.4.1
go: downloading github.com/Antonboom/errname v1.1.2
go: downloading codeberg.org/polyfloyd/go-errorlint v1.9.0
go: downloading github.com/nishanths/exhaustive v0.12.0
go: downloading dev.gaijin.team/go/exhaustruct/v4 v4.0.0
go: downloading github.com/ldez/exptostd v0.4.5
go: downloading go.augendre.info/fatcontext v0.9.0
go: downloading github.com/ashanbrown/forbidigo/v2 v2.3.1
go: downloading github.com/gostaticanalysis/forcetypeassert v0.2.0
go: downloading github.com/manuelarte/funcorder v0.6.0
go: downloading github.com/ultraware/funlen v0.2.0
go: downloading github.com/nunnatsa/ginkgolinter v0.23.0
go: downloading 4d63.com/gocheckcompilerdirectives v1.4.0
go: downloading 4d63.com/gochecknoglobals v0.2.2
go: downloading github.com/alecthomas/go-check-sumtype v0.3.1
go: downloading github.com/uudashr/gocognit v1.2.1
go: downloading github.com/jgautheron/goconst v1.10.2
go: downloading github.com/go-critic/go-critic v0.14.3
go: downloading github.com/quasilyte/go-ruleguard/dsl v0.3.23
go: downloading github.com/quasilyte/go-ruleguard v0.4.5
go: downloading github.com/fzipp/gocyclo v0.6.0
go: downloading github.com/godoc-lint/godoc-lint v0.11.2
go: downloading github.com/tetafro/godot v1.5.6
go: downloading github.com/matoous/godox v1.1.0
go: downloading github.com/denis-tingaikin/go-header v0.5.0
go: downloading github.com/ldez/gomoddirectives v0.9.0
go: downloading github.com/Masterminds/semver/v3 v3.5.0
go: downloading github.com/ryancurrah/gomodguard v1.4.1
go: downloading github.com/ryancurrah/gomodguard/v2 v2.1.3
go: downloading github.com/golangci/go-printf-func-name v0.1.1
go: downloading github.com/securego/gosec/v2 v2.27.1
go: downloading github.com/xen0n/gosmopolitan v1.3.0
go: downloading github.com/leonklingele/grouper v1.1.2
go: downloading github.com/uudashr/iface v1.5.0
go: downloading github.com/julz/importas v0.2.0
go: downloading github.com/macabu/inamedparam v0.2.0
go: downloading github.com/gordonklaus/ineffassign v0.2.0
go: downloading github.com/sashamelentyev/interfacebloat v1.1.0
go: downloading github.com/ckaznocha/intrange v0.3.1
go: downloading github.com/AdminBenni/iota-mixing v1.0.0
go: downloading github.com/butuzov/ireturn v0.4.1
go: downloading github.com/timonwong/loggercheck v0.11.0
go: downloading github.com/yagipy/maintidx v1.0.0
go: downloading github.com/ashanbrown/makezero/v2 v2.2.1
go: downloading github.com/butuzov/mirror v1.3.3
go: downloading github.com/golangci/misspell v0.8.0
go: downloading github.com/tommy-muehle/go-mnd/v2 v2.5.1
go: downloading go-simpler.org/musttag v0.14.0
go: downloading github.com/alexkohler/nakedret/v2 v2.0.6
go: downloading github.com/nakabonne/nestif v0.3.1
go: downloading github.com/gostaticanalysis/nilerr v0.1.2
go: downloading github.com/alingse/nilnesserr v0.2.0
go: downloading github.com/Antonboom/nilnil v1.1.2
go: downloading github.com/ssgreg/nlreturn/v2 v2.2.1
go: downloading github.com/sonatard/noctx v0.5.1
go: downloading github.com/AlwxSin/noinlineerr v1.0.5
go: downloading github.com/firefart/nonamedreturns v1.0.7
go: downloading github.com/stbenjam/no-sprintf-host-port v0.3.1
go: downloading github.com/kunwardeep/paralleltest v1.0.15
go: downloading github.com/catenacyber/perfsprint v0.10.1
go: downloading github.com/alexkohler/prealloc v1.1.0
go: downloading github.com/nishanths/predeclared v0.2.2
go: downloading github.com/yeya24/promlinter v0.3.0
go: downloading github.com/ghostiam/protogetter v0.3.21
go: downloading github.com/curioswitch/go-reassign v0.3.0
go: downloading github.com/raeperd/recvcheck v0.3.0
go: downloading github.com/mgechev/revive v1.15.0
go: downloading github.com/golangci/rowserrcheck v0.0.0-20260602201336-0ec5bd2741d7
go: downloading go-simpler.org/sloglint v0.12.0
go: downloading github.com/jjti/go-spancheck v0.6.5
go: downloading github.com/ryanrolds/sqlclosecheck v0.6.0
go: downloading honnef.co/go/tools v0.7.0
go: downloading github.com/4meepo/tagalign v1.4.3
go: downloading github.com/ldez/tagliatelle v0.7.2
go: downloading github.com/maratori/testableexamples v1.0.1
go: downloading github.com/Antonboom/testifylint v1.6.4
go: downloading github.com/maratori/testpackage v1.1.2
go: downloading github.com/kulti/thelper v0.7.1
go: downloading github.com/moricho/tparallel v0.3.2
go: downloading github.com/golangci/unconvert v0.0.0-20250410112200-a129a6e6413e
go: downloading mvdan.cc/unparam v0.0.0-20251027182757-5beb8c8f8f15
go: downloading github.com/MirrexOne/unqueryvet v1.5.4
go: downloading github.com/sashamelentyev/usestdlibvars v1.29.0
go: downloading github.com/ldez/usetesting v0.5.0
go: downloading github.com/blizzy78/varnamelen v0.8.0
go: downloading github.com/sanposhiho/wastedassign/v2 v2.1.0
go: downloading github.com/ultraware/whitespace v0.2.0
go: downloading github.com/tomarrell/wrapcheck/v2 v2.12.0
go: downloading github.com/bombsimon/wsl/v4 v4.7.0
go: downloading github.com/bombsimon/wsl/v5 v5.8.0
go: downloading github.com/ykadowak/zerologlint v0.1.5
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading github.com/stretchr/objx v0.5.3
go: downloading github.com/dlclark/regexp2/v2 v2.2.2
go: downloading github.com/hexops/gotextdiff v1.0.3
go: downloading go.uber.org/zap v1.28.0
go: downloading github.com/dave/dst v0.27.4
go: downloading github.com/gostaticanalysis/analysisutil v0.7.1
go: downloading github.com/go-toolsmith/astcast v1.1.0
go: downloading github.com/gobwas/glob v0.2.3
go: downloading dev.gaijin.team/go/golib v0.8.1
go: downloading github.com/google/go-cmp v0.7.0
go: downloading github.com/go-toolsmith/astcopy v1.1.0
go: downloading github.com/go-toolsmith/astequal v1.2.0
go: downloading github.com/go-toolsmith/astfmt v1.1.0
go: downloading github.com/go-toolsmith/astp v1.1.0
go: downloading github.com/go-toolsmith/strparse v1.1.0
go: downloading github.com/go-toolsmith/typep v1.1.0
go: downloading github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727
go: downloading github.com/ccojocar/zxcvbn-go v1.0.4
go: downloading github.com/gostaticanalysis/comment v1.5.0
go: downloading github.com/prometheus/client_golang v1.23.2
go: downloading github.com/prometheus/client_model v0.6.2
go: downloading github.com/fatih/structtag v1.2.0
go: downloading github.com/ettle/strcase v0.2.0
go: downloading github.com/alfatraining/structtag v1.0.0
go: downloading github.com/hashicorp/go-immutable-radix/v2 v2.1.0
go: downloading github.com/ldez/structtags v0.6.1
go: downloading golang.org/x/exp/typeparams v0.0.0-20260611194520-c48552f49976
go: downloading github.com/quasilyte/gogrep v0.5.0
go: downloading github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/prometheus/common v0.69.0
go: downloading github.com/prometheus/procfs v0.20.1
go: downloading google.golang.org/protobuf v1.36.11
go: downloading codeberg.org/chavacava/garif v0.2.1
go: downloading github.com/hashicorp/golang-lru/v2 v2.0.7
go: github.com/redhat-developer/mapt/tools imports
	github.com/golangci/golangci-lint/v2/cmd/golangci-lint imports
	github.com/golangci/golangci-lint/v2/pkg/commands imports
	github.com/golangci/golangci-lint/v2/pkg/goformatters imports
	github.com/golangci/golangci-lint/v2/pkg/goformatters/gofmt imports
	github.com/golangci/gofmt/gofmt: cannot find module providing package github.com/golangci/gofmt/gofmt

@renovate

renovate Bot commented Jun 25, 2026

Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@adrianriobo adrianriobo left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@adrianriobo adrianriobo merged commit d4ef9b7 into main Jun 25, 2026
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant