Skip to content

fix(deps): update all dependencies#556

Merged
adrianriobo merged 1 commit intomainfrom
renovate/all
Aug 1, 2025
Merged

fix(deps): update all dependencies#556
adrianriobo merged 1 commit intomainfrom
renovate/all

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Jul 31, 2025

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/runner minor 2.317.0 -> 2.327.1 age confidence
cirruslabs/cirrus-cli minor v0.135.0 -> v0.147.0 age confidence
github.com/aws/aws-sdk-go-v2 require minor v1.36.6 -> v1.37.1 age confidence
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream indirect minor v1.6.11 -> v1.7.0 age confidence
github.com/aws/aws-sdk-go-v2/config require minor v1.29.18 -> v1.30.2 age confidence
github.com/aws/aws-sdk-go-v2/credentials indirect minor v1.17.71 -> v1.18.2 age confidence
github.com/aws/aws-sdk-go-v2/feature/ec2/imds indirect minor v1.16.33 -> v1.18.1 age confidence
github.com/aws/aws-sdk-go-v2/internal/configsources indirect minor v1.3.37 -> v1.4.1 age confidence
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 indirect minor v2.6.37 -> v2.7.1 age confidence
github.com/aws/aws-sdk-go-v2/internal/v4a indirect minor v1.3.37 -> v1.4.1 age confidence
github.com/aws/aws-sdk-go-v2/service/ec2 require minor v1.233.1 -> v1.239.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ecs require minor v1.60.1 -> v1.61.1 age confidence
github.com/aws/aws-sdk-go-v2/service/iam require minor v1.43.1 -> v1.44.1 age confidence
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding indirect minor v1.12.4 -> v1.13.0 age confidence
github.com/aws/aws-sdk-go-v2/service/internal/checksum indirect minor v1.7.5 -> v1.8.1 age confidence
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url indirect minor v1.12.18 -> v1.13.1 age confidence
github.com/aws/aws-sdk-go-v2/service/internal/s3shared indirect minor v1.18.18 -> v1.19.1 age confidence
github.com/aws/aws-sdk-go-v2/service/pricing indirect minor v1.35.1 -> v1.36.1 age confidence
github.com/aws/aws-sdk-go-v2/service/s3 require minor v1.84.1 -> v1.85.1 age confidence
github.com/aws/aws-sdk-go-v2/service/sso indirect minor v1.25.6 -> v1.26.1 age confidence
github.com/aws/aws-sdk-go-v2/service/ssooidc indirect minor v1.30.4 -> v1.31.1 age confidence
github.com/aws/aws-sdk-go-v2/service/sts indirect minor v1.34.1 -> v1.35.1 age confidence
github.com/golang-jwt/jwt/v5 indirect minor v5.2.3 -> v5.3.0 age confidence
github.com/golangci/golangci-lint/v2 require minor v2.2.2 -> v2.3.0 age confidence
github.com/ldez/grignotin indirect minor v0.9.0 -> v0.10.0 age confidence
github.com/nunnatsa/ginkgolinter indirect minor v0.19.1 -> v0.20.0 age confidence
github.com/prometheus/client_golang indirect minor v1.22.0 -> v1.23.0 age confidence
github.com/pulumi/esc indirect minor v0.14.3 -> v0.16.0 age confidence
github.com/pulumi/pulumi/sdk/v3 require minor v3.185.0 -> v3.187.0 age confidence
github.com/sagikazarmark/locafero indirect minor v0.9.0 -> v0.10.0 age confidence
github.com/sonatard/noctx indirect minor v0.3.5 -> v0.4.0 age confidence
google.golang.org/genproto/googleapis/rpc indirect digest 7130f93 -> f173205 age confidence
google.golang.org/grpc indirect minor v1.73.0 -> v1.74.2 age confidence
pulumi/pulumi minor 3.184.0 -> 3.187.0 age confidence
pulumi/pulumi-aws minor v7.0.0 -> v7.2.0 age confidence
pulumi/pulumi-awsx major v2.22.0 -> v3.0.0 age confidence
registry.access.redhat.com/ubi9/go-toolset stage digest 6fd64cd -> 3ce6311
registry.access.redhat.com/ubi9/ubi final digest 61bf5be -> 0fa3e48

Warning

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


Release Notes

actions/runner (actions/runner)

v2.327.1

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.326.0...v2.327.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.327.1/actions-runner-win-x64-2.327.1.zip -OutFile actions-runner-win-x64-2.327.1.zip

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

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

### Extract the installer
tar xzf ./actions-runner-osx-x64-2.327.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.327.1/actions-runner-osx-arm64-2.327.1.tar.gz

### Extract the installer
tar xzf ./actions-runner-osx-arm64-2.327.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.327.1/actions-runner-linux-x64-2.327.1.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-x64-2.327.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.327.1/actions-runner-linux-arm64-2.327.1.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm64-2.327.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.327.1/actions-runner-linux-arm-2.327.1.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm-2.327.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.327.1.zip 7179db618e7f79e0ce63d96b15f3b6cf6e69996b2094f7f02208b7786c50b6a3
  • actions-runner-win-arm64-2.327.1.zip 615ccbbe4880f9c09ee2878431b100e62cfced000e9b3a0886a8130335e13e5d
  • actions-runner-osx-x64-2.327.1.tar.gz a0cb80fb6baacf5c669ccd5c2f64429033a7b4dac1e020b4231a4fc5ff396b76
  • actions-runner-osx-arm64-2.327.1.tar.gz 807f875f4a357a9c919b484329c072e885ef2c041a18d3107cf1a1e5932eecc0
  • actions-runner-linux-x64-2.327.1.tar.gz d68ac1f500b747d1271d9e52661c408d56cffd226974f68b7dc813e30b9e0575
  • actions-runner-linux-arm64-2.327.1.tar.gz 16102096988246f250a745c6a813a5a0b8901e2f554f9440c97e8573fd4da111
  • actions-runner-linux-arm-2.327.1.tar.gz b6f34af6d11f5f023fe23aa8bcb01f392eaad30d70e1e31f4e68bbdbb315eda8

v2.327.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.326.0...v2.327.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.327.0/actions-runner-win-x64-2.327.0.zip -OutFile actions-runner-win-x64-2.327.0.zip

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

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

### Extract the installer
tar xzf ./actions-runner-osx-x64-2.327.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.327.0/actions-runner-osx-arm64-2.327.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-osx-arm64-2.327.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.327.0/actions-runner-linux-x64-2.327.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-x64-2.327.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.327.0/actions-runner-linux-arm64-2.327.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm64-2.327.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.327.0/actions-runner-linux-arm-2.327.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm-2.327.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.327.0.zip 98588fe278e68b8988ea4fad7d0233a4544592b5d2ee09ed8f73f9a0c86d0190
  • actions-runner-win-arm64-2.327.0.zip efcc44a40ce612ee3b0d4928a9325df3689911d59559d20b3902434399b65bac
  • actions-runner-osx-x64-2.327.0.tar.gz 2e9f16999a83f39969186e76abb2ba726c04e11dc98986de7d9e494fe0236d0f
  • actions-runner-osx-arm64-2.327.0.tar.gz dd0753890663023646d7c9739f9fd2b4b85dadbdc023bfacc688dda8fa7b16f5
  • actions-runner-linux-x64-2.327.0.tar.gz 697deac53b39b72396c6fe3fe3b10bdc05cf59c12e82295a2e6decc53ca7d3e4
  • actions-runner-linux-arm64-2.327.0.tar.gz 5d41da47727514b3ee77974362171582b791f600b2a4e74b2fe3decb52f8d0c1
  • actions-runner-linux-arm-2.327.0.tar.gz f73583e4b80917ba84977eeae2fa9c09b030cde97461f71e5414deba5291a8dd

v2.326.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.325.0...v2.326.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.326.0/actions-runner-win-x64-2.326.0.zip -OutFile actions-runner-win-x64-2.326.0.zip

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

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

### Extract the installer
tar xzf ./actions-runner-osx-x64-2.326.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.326.0/actions-runner-osx-arm64-2.326.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-osx-arm64-2.326.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.326.0/actions-runner-linux-x64-2.326.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-x64-2.326.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.326.0/actions-runner-linux-arm64-2.326.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm64-2.326.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.326.0/actions-runner-linux-arm-2.326.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm-2.326.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.326.0.zip 539d48815f8ecda6903755025d5b578f919a32692b731d85a9a24419fe4dbd9e
  • actions-runner-win-arm64-2.326.0.zip c6f837fbfce536b4bbb934201947956dfcdb34960e9f986c82bb963ff0890724
  • actions-runner-osx-x64-2.326.0.tar.gz 9e8c7fed970d7b19c224873dbdded39c0480af72a68c094096b3b36a9ba31c4f
  • actions-runner-osx-arm64-2.326.0.tar.gz 5399a02b5cfb98293aa7057cee917dcbd08d612fcb6960d1a8fdd4aacdf7f56f
  • actions-runner-linux-x64-2.326.0.tar.gz 9c74af9b4352bbc99aecc7353b47bcdfcd1b2a0f6d15af54a99f54a0c14a1de8
  • actions-runner-linux-arm64-2.326.0.tar.gz ee7c229c979c5152e9f12be16ee9e83ff74c9d9b95c3c1aeb2e9b6d07157ec85
  • actions-runner-linux-arm-2.326.0.tar.gz e71a8e88b0ad4d05e315a42de9aef13ed3eb7a8ac37f4693cbeaba4ac353ff30

v2.325.0

Compare Source

What's Changed

Full Changelog: actions/runner@v2.324.0...v2.325.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.325.0/actions-runner-win-x64-2.325.0.zip -OutFile actions-runner-win-x64-2.325.0.zip

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

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

### Extract the installer
tar xzf ./actions-runner-osx-x64-2.325.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.325.0/actions-runner-osx-arm64-2.325.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-osx-arm64-2.325.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.325.0/actions-runner-linux-x64-2.325.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-x64-2.325.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.325.0/actions-runner-linux-arm64-2.325.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm64-2.325.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.325.0/actions-runner-linux-arm-2.325.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm-2.325.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.325.0.zip 8601aa56828c084b29bdfda574af1fcde0943ce275fdbafb3e6d4a8611245b1b
  • actions-runner-win-arm64-2.325.0.zip bc57c7bd5c07310481654bc8516fd42000a9bc0f2e2f8e588b6ea46c3391eb45
  • actions-runner-osx-x64-2.325.0.tar.gz 0562bd934b27ca0c6d8a357df00809fbc7b4d5524d4aeb6ec152e14fd520a4c3
  • actions-runner-osx-arm64-2.325.0.tar.gz 155cc00c217bdc3a74f1c0534e8e3bde1a2d9e2186f01f68a9dec185628fe749
  • actions-runner-linux-x64-2.325.0.tar.gz 5020da7139d85c776059f351e0de8fdec753affc9c558e892472d43ebeb518f4
  • actions-runner-linux-arm64-2.325.0.tar.gz 0e916ad0d354089d320011c132d46bdbe3353c8b925a2e1056c7c8e85d2f2490
  • actions-runner-linux-arm-2.325.0.tar.gz f74f77c6437c6de3d2921e4b26a6e2e31c21cbdeb309f86648d1f4e5fa0c3eca

v2.324.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.323.0...v2.324.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.324.0/actions-runner-win-x64-2.324.0.zip -OutFile actions-runner-win-x64-2.324.0.zip

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

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

### Extract the installer
tar xzf ./actions-runner-osx-x64-2.324.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.324.0/actions-runner-osx-arm64-2.324.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-osx-arm64-2.324.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.324.0/actions-runner-linux-x64-2.324.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-x64-2.324.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.324.0/actions-runner-linux-arm64-2.324.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm64-2.324.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.324.0/actions-runner-linux-arm-2.324.0.tar.gz

### Extract the installer
tar xzf ./actions-runner-linux-arm-2.324.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.324.0.zip 78b70ddc65e0c2f1940195859e453bdfaa098fe3475cf89bc9378614d2adc197
  • actions-runner-win-arm64-2.324.0.zip 43479570319c7091132d362e1d518a38bba1e37494b14b47d3b85c176f869f82
  • actions-runner-osx-x64-2.324.0.tar.gz fbf97cc843c480f0104e2a3d2b1bda86ca467c88da666ac76e432caa2748c683
  • actions-runner-osx-arm64-2.324.0.tar.gz ea3e592d93afd0d71c5e355c15f98ee7cb21cf5ea0ac39f55bf21c661f1915ef
  • actions-runner-linux-x64-2.324.0.tar.gz e8e24a3477da17040b4d6fa6d34c6ecb9a2879e800aa532518ec21e49e21d7b4
  • actions-runner-linux-arm64-2.324.0.tar.gz b5a5cf1138064afd0f0fb1a4a493adaa9bff5485ace3575e99547f004dbb20fa
  • actions-runner-linux-arm-2.324.0.tar.gz 947784560c2dfc750a83dd7f94861244b9deb0e97cb3f3e68f79507bd0ce8e5c

v2.323.0

Compare Source

What's Changed


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: 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
Copy link
Copy Markdown
Contributor Author

renovate bot commented Jul 31, 2025

⚠️ 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: go get -d -t ./...
go: -d flag is deprecated. -d=true is a no-op
go: module github.com/pulumi/pulumi/sdk/v3@v3.187.0 requires go >= 1.23.11; switching to go1.23.11
go: downloading go1.23.11 (linux/amd64)
go: download go1.23.11: golang.org/toolchain@v0.0.1-go1.23.11.linux-amd64: verifying module: checksum database disabled by GOSUMDB=off

File name: tools/go.sum
Command failed: mod upgrade --mod-name=github.com/golangci/golangci-lint/v2 -t=2
could not load package: err: exit status 1: stderr: go: inconsistent vendoring in /tmp/renovate/repos/github/redhat-developer/mapt/tools:
	github.com/golangci/golangci-lint/v2@v2.3.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/nunnatsa/ginkgolinter@v0.20.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/ldez/grignotin@v0.10.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/prometheus/client_golang@v1.23.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/sagikazarmark/locafero@v0.10.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/sonatard/noctx@v0.4.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/sourcegraph/conc@v0.3.1-0.20240121214520-5f936abd7ae8: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/golangci/golangci-lint/v2@v2.2.2: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/ldez/grignotin@v0.9.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/nunnatsa/ginkgolinter@v0.19.1: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/prometheus/client_golang@v1.22.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/sagikazarmark/locafero@v0.9.0: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/sonatard/noctx@v0.3.5: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/sourcegraph/conc@v0.3.0: 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


@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from 8084f90 to d6f906f Compare August 1, 2025 17:14
@renovate
Copy link
Copy Markdown
Contributor Author

renovate bot commented Aug 1, 2025

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.

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.

LGTM

@adrianriobo adrianriobo merged commit 69174e3 into main Aug 1, 2025
7 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