Skip to content

fix(deps): update patch updates#757

Merged
adrianriobo merged 1 commit intomainfrom
renovate/patch-updates
Mar 30, 2026
Merged

fix(deps): update patch updates#757
adrianriobo merged 1 commit intomainfrom
renovate/patch-updates

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Mar 30, 2026

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/runner patch 2.333.02.333.1 age confidence
github.com/aws/aws-sdk-go-v2 require patch v1.41.4v1.41.5 age confidence
github.com/aws/aws-sdk-go-v2/config require patch v1.32.12v1.32.13 age confidence
github.com/aws/aws-sdk-go-v2/credentials indirect patch v1.19.12v1.19.13 age confidence
github.com/aws/aws-sdk-go-v2/feature/ec2/imds indirect patch v1.18.20v1.18.21 age confidence
github.com/aws/aws-sdk-go-v2/internal/configsources indirect patch v1.4.20v1.4.21 age confidence
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 indirect patch v2.7.20v2.7.21 age confidence
github.com/aws/aws-sdk-go-v2/internal/v4a indirect patch v1.4.21v1.4.22 age confidence
github.com/aws/aws-sdk-go-v2/service/ec2 require patch v1.296.0v1.296.1 age confidence
github.com/aws/aws-sdk-go-v2/service/ecs require patch v1.74.0v1.74.1 age confidence
github.com/aws/aws-sdk-go-v2/service/iam require patch v1.53.6v1.53.7 age confidence
github.com/aws/aws-sdk-go-v2/service/internal/checksum indirect patch v1.9.12v1.9.13 age confidence
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url indirect patch v1.13.20v1.13.21 age confidence
github.com/aws/aws-sdk-go-v2/service/internal/s3shared indirect patch v1.19.20v1.19.21 age confidence
github.com/aws/aws-sdk-go-v2/service/pricing indirect patch v1.40.14v1.40.15 age confidence
github.com/aws/aws-sdk-go-v2/service/s3 require patch v1.97.2v1.97.3 age confidence
github.com/aws/aws-sdk-go-v2/service/signin indirect patch v1.0.8v1.0.9 age confidence
github.com/aws/aws-sdk-go-v2/service/sso indirect patch v1.30.13v1.30.14 age confidence
github.com/aws/aws-sdk-go-v2/service/ssooidc indirect patch v1.35.17v1.35.18 age confidence
github.com/aws/aws-sdk-go-v2/service/sts require patch v1.41.9v1.41.10 age confidence
github.com/butuzov/ireturn indirect patch v0.4.0v0.4.1 age confidence
github.com/go-git/go-git/v5 indirect patch v5.17.0v5.17.1 age confidence
github.com/pulumi/pulumi-awsx/sdk/v3 require patch v3.3.0v3.3.1 age confidence
github.com/tetafro/godot indirect patch v1.5.4v1.5.6 age confidence
pulumi/pulumi-awsx patch v3.3.0v3.3.1 age confidence

Release Notes

actions/runner (actions/runner)

v2.333.1

Compare Source

What's Changed

Full Changelog: actions/runner@v2.333.0...v2.333.1

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.333.1/actions-runner-win-x64-2.333.1.zip -OutFile actions-runner-win-x64-2.333.1.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.333.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.333.1/actions-runner-win-arm64-2.333.1.zip -OutFile actions-runner-win-arm64-2.333.1.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.333.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.333.1/actions-runner-osx-x64-2.333.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.333.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.333.1/actions-runner-osx-arm64-2.333.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.333.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.333.1/actions-runner-linux-x64-2.333.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.333.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.333.1/actions-runner-linux-arm64-2.333.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.333.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.333.1/actions-runner-linux-arm-2.333.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.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.333.1.zip d0c4fcb91f8f0754d478db5d61db533bba14cad6c4676a9b93c0b7c2a3969aa0
  • actions-runner-win-arm64-2.333.1.zip c665c4ce2bf1d79e1ce49051d91a9e84822a19891ceb442bdaae9fb0d82eb642
  • actions-runner-osx-x64-2.333.1.tar.gz e3be55b41452befae65ae032c10df4d8cc6a1926514ef837c45a04f18d11d9d9
  • actions-runner-osx-arm64-2.333.1.tar.gz 69d8c30aff69592fd0e3da6db1a477506ae5942cd438967f098bbdbc4e954c90
  • actions-runner-linux-x64-2.333.1.tar.gz 18f8f68ed1892854ff2ab1bab4fcaa2f5abeedc98093b6cb13638991725cab74
  • actions-runner-linux-arm64-2.333.1.tar.gz 69ac7e5692f877189e7dddf4a1bb16cbbd6425568cd69a0359895fac48b9ad3b
  • actions-runner-linux-arm-2.333.1.tar.gz 26d89c7b08685ab6aa9155e062ad60a3f63cb571b7510eadbc723b2f7e4c9f8b
aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)

v1.41.5

Compare Source

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/bedrockagentruntime: v1.5.0
    • Feature: This release adds support to customize prompts sent through the RetrieveAndGenerate API in Agents for Amazon Bedrock.
  • github.com/aws/aws-sdk-go-v2/service/costexplorer: v1.37.0
    • Feature: Adds support for backfill of cost allocation tags, with new StartCostAllocationTagBackfill and ListCostAllocationTagBackfillHistory API.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.154.0
    • Feature: Documentation updates for Elastic Compute Cloud (EC2).
  • github.com/aws/aws-sdk-go-v2/service/ecs: v1.41.5
    • Documentation: This is a documentation update for Amazon ECS.
  • github.com/aws/aws-sdk-go-v2/service/finspace: v1.24.0
    • Feature: Add new operation delete-kx-cluster-node and add status parameter to list-kx-cluster-node operation.
butuzov/ireturn (github.com/butuzov/ireturn)

v0.4.1

Compare Source

Changelog

go-git/go-git (github.com/go-git/go-git/v5)

v5.17.1

Compare Source

What's Changed

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

pulumi/pulumi-awsx (github.com/pulumi/pulumi-awsx/sdk/v3)

v3.3.1

Compare Source

What's Changed

Full Changelog: pulumi/pulumi-awsx@v3.3.0...v3.3.1

tetafro/godot (github.com/tetafro/godot)

v1.5.6

Compare Source

Changelog

  • 88cf245 Fix working with //line directive
  • c1ee1ed Update golangci-lint to v2.
  • fd5b12e Update golangci-lint to v2.8.

v1.5.5

Compare Source

Changelog

  • f4f097a Fix goreleaser configs.
  • a7be78a Fix inline comments replacements.

Configuration

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

🚦 Automerge: Enabled.

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.

Copy link
Copy Markdown
Collaborator

@adrianriobo adrianriobo left a comment

Choose a reason for hiding this comment

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

LGMT

@adrianriobo adrianriobo merged commit 69900db into main Mar 30, 2026
7 checks passed
@renovate renovate bot deleted the renovate/patch-updates branch March 30, 2026 04:23
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