Skip to content

fix(deps): update all dependencies#837

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all
Open

fix(deps): update all dependencies#837
renovate[bot] wants to merge 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/runner minor 2.334.02.335.1 age confidence
github.com/Azure/azure-sdk-for-go/sdk/azidentity require minor v1.13.1v1.14.0 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/vpc-go-sdk require minor v0.84.0v0.85.0 age confidence
github.com/aws/aws-sdk-go-v2 require minor v1.41.12v1.42.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ec2 require minor v1.305.2v1.307.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ecs require minor v1.82.3v1.83.0 age confidence
github.com/aws/aws-sdk-go-v2/service/signin indirect minor v1.1.1v1.2.0 age confidence
github.com/charmbracelet/ultraviolet indirect digest 6cf75262399af7 age confidence
github.com/charmbracelet/x/exp/golden indirect digest cd19a2bb57e5e6 age confidence
github.com/evertras/bubble-table indirect minor v0.19.2v0.22.3 age confidence
github.com/go-openapi/validate indirect minor v0.25.3v0.26.0 age confidence
github.com/golangci/gofmt indirect digest d62b90ee7be49a age confidence
github.com/pulumi/pulumi-aws-native/sdk require minor v1.68.0v1.69.0 age confidence
github.com/pulumi/pulumi-aws/sdk/v7 require minor v7.32.0v7.33.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.245.0v3.246.0 age confidence
go.opentelemetry.io/collector/featuregate indirect minor v1.59.0v1.60.0 age confidence
go.opentelemetry.io/collector/pdata indirect minor v1.59.0v1.60.0 age confidence
golang.org/x/crypto indirect minor v0.52.0v0.53.0 age confidence
golang.org/x/exp require digest 055de63c48552f age confidence
golang.org/x/exp/typeparams indirect digest 055de63c48552f age confidence
golang.org/x/mod indirect minor v0.36.0v0.37.0 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/sync indirect minor v0.20.0v0.21.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 3dc84a462b3387 age confidence
google.golang.org/genproto/googleapis/rpc indirect digest 3dc84a462b3387 age confidence
pulumi/pulumi minor 3.245.03.246.0 age confidence
pulumi/pulumi-aws minor v7.32.0v7.33.0 age confidence
pulumi/pulumi-aws-native minor v1.68.0v1.69.0 age confidence
registry.access.redhat.com/hi/core-runtime final digest c85f5e0dcd72ea
registry.access.redhat.com/ubi9/go-toolset stage digest d36470debcc356

Release Notes

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/vpc-go-sdk (github.com/IBM/vpc-go-sdk)

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.


ListSnapshotConsistencyGroupsOptions.BackupPolicyJobID filter (new)

A new filter field BackupPolicyJobID *string has been added to ListSnapshotConsistencyGroupsOptions, allowing callers to filter the snapshot consistency groups collection by backup_policy_job.id.

A corresponding setter SetBackupPolicyJobID has been added:

options.SetBackupPolicyJobID("r006-xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")

The query parameter is propagated in ListSnapshotConsistencyGroupsWithContext via backup_policy_job.id.


Changes

API version bumped to 2026-06-09

The default API version string used by the client has been updated from 2026-06-02 to 2026-06-09:


Backup policy instance type — multi-generation clarification

The documentation comments for BackupPolicyPrototypeBackupPolicyMatchResourceTypeInstancePrototype.MatchResourceType have been updated to clarify multi-storage-generation behaviour:


Snapshot consistency group prototype — storage_generation constraint relaxed

The documentation comments for the Snapshots field on both SnapshotConsistencyGroupPrototype and SnapshotConsistencyGroupPrototypeSnapshotConsistencyGroupBySnapshots have been updated:


Breaking Changes

None.


Bug Fixes

None.

aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)

v1.42.0

Compare Source

General Highlights

  • Dependency Update: Bump smithy-go to 1.25.0 to support endpointBdd trait
  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/cleanrooms: v1.43.0
    • Feature: This release adds support for configurable spark properties for Cleanrooms PySpark workloads.
  • github.com/aws/aws-sdk-go-v2/service/connect: v1.171.0
    • Feature: Fixes in SDK for customers using TestCase APIs
  • github.com/aws/aws-sdk-go-v2/service/connectcampaignsv2: v1.12.0
    • Feature: This release adds support for campaign entry limits configuration and hourly refresh frequency in Amazon Connect Outbound Campaigns.
  • github.com/aws/aws-sdk-go-v2/service/groundstation: v1.41.0
    • Feature: Adds support for updating contacts, listing antennas, and listing ground station reservations. New API operations - UpdateContact, ListContactVersions, DescribeContactVersion, ListAntennas, and ListGroundStationReservations.
  • github.com/aws/aws-sdk-go-v2/service/imagebuilder: v1.53.0
    • Feature: ImportDiskImage API adds registerImageOptions for Secure Boot control and custom UEFI data. It adds windowsConfiguration for selecting a specific edition from multi-image .wim files during ISO import.
  • github.com/aws/aws-sdk-go-v2/service/neptune: v1.44.4
    • Documentation: Improving Documentation for Neptune
  • github.com/aws/aws-sdk-go-v2/service/quicksight: v1.107.0
    • Feature: Public release of dashboard customization summary, S3 Tables data source type, Athena cross-account connector, custom sorting for controls, and AI-powered analysis generation.
  • github.com/aws/aws-sdk-go-v2/service/sagemaker: v1.241.0
    • Feature: Adds support for providing NetworkInterface for efa enabled instances and Simplified cluster creation for Slurm-orchestrated clusters with optional Lifecycle Script (LCS) configuration.
  • github.com/aws/aws-sdk-go-v2/service/sts: v1.42.0
    • Feature: The STS client now supports configuring SigV4a through the auth scheme preference setting. SigV4a uses asymmetric cryptography, enabling customers using long-term IAM credentials to continue making STS API calls even when a region is isolated from the partition leader.
evertras/bubble-table (github.com/evertras/bubble-table)

v0.22.3

Compare Source

What's Changed

Full Changelog: Evertras/bubble-table@v0.22.2...v0.22.3

v0.22.2

Compare Source

What's Changed

Full Changelog: Evertras/bubble-table@v0.22.1...v0.22.2

v0.22.1

Compare Source

What's Changed

Full Changelog: Evertras/bubble-table@v0.22.0...v0.22.1

v0.22.0

Compare Source

What's Changed

Full Changelog: Evertras/bubble-table@v0.21.0...v0.22.0

v0.21.0

Compare Source

What's Changed

Full Changelog: Evertras/bubble-table@v0.20.1...v0.21.0

v0.20.1

Compare Source

What's Changed

Full Changelog: Evertras/bubble-table@v0.20.0...v0.20.1

v0.20.0

Compare Source

What's Changed

Full Changelog: Evertras/bubble-table@v0.19.2...v0.20.0

Breaking Changes

  • Updated to bubbletea v2, bubbles v2, and lipgloss v2 — import paths have changed to charm.land/bubbletea/v2, charm.land/bubbles/v2, and charm.land/lipgloss/v2
  • Minimum Go version raised to 1.25
Upgrading

Before upgrading, ensure your app is using bubbletea v2, bubbles v2, lipgloss v2, and Go 1.25 or later.

go-openapi/validate (github.com/go-openapi/validate)

v0.26.0

Compare Source

0.26.0 - 2026-06-10

Full Changelog: go-openapi/validate@v0.25.3...v0.26.0

6 commits in this release.


Implemented enhancements
Documentation
Miscellaneous tasks
Updates

People who contributed to this release

validate license terms

License

pulumi/pulumi-aws-native (github.com/pulumi/pulumi-aws-native/sdk)

[`v1

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 becomes conflicted, 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 an artifact 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: tools/go.sum
Command failed: go get -t ./...
go: downloading github.com/charmbracelet/ultraviolet v0.0.0-20260615092913-2399af76d5b1
go: downloading github.com/golangci/gofmt v0.0.0-20251215234548-e7be49a5ab4d
go: downloading github.com/firefart/nonamedreturns v1.0.6
go: downloading github.com/dlclark/regexp2/v2 v2.2.1
go: downloading golang.org/x/exp/typeparams v0.0.0-20260611194520-c48552f49976
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 16, 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.

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