Skip to content

chore(deps): update dependency actions/runner to v2.331.0#65

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/actions-runner-2.x
Open

chore(deps): update dependency actions/runner to v2.331.0#65
renovate[bot] wants to merge 1 commit intomainfrom
renovate/actions-runner-2.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 24, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Update Change
actions/runner minor 2.321.02.331.0

Release Notes

actions/runner (actions/runner)

v2.331.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.330.0...v2.331.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.331.0/actions-runner-win-x64-2.331.0.zip -OutFile actions-runner-win-x64-2.331.0.zip

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

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

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.331.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.331.0/actions-runner-osx-arm64-2.331.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.331.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.331.0/actions-runner-linux-x64-2.331.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.331.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.331.0/actions-runner-linux-arm64-2.331.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.331.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.331.0/actions-runner-linux-arm-2.331.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.331.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.331.0.zip 473e74b86cd826e073f1c1f2c004d3fb9e6c9665d0d51710a23e5084a601c78a
  • actions-runner-win-arm64-2.331.0.zip 12ac57b6e00acb308e3b53f1d34e81af64461084672630a41b9cfc05f6dc0ca2
  • actions-runner-osx-x64-2.331.0.tar.gz 0bcba2dd55eb429620f3184cebaa2e403e99dbf2b621e5858203c3aca3900878
  • actions-runner-osx-arm64-2.331.0.tar.gz 6f56ce368b09041f83c5ded4d0fb83b08d9a28e22300a2ce5cb1ed64e67ea47c
  • actions-runner-linux-x64-2.331.0.tar.gz 5fcc01bd546ba5c3f1291c2803658ebd3cedb3836489eda3be357d41bfcf28a7
  • actions-runner-linux-arm64-2.331.0.tar.gz f5863a211241436186723159a111f352f25d5d22711639761ea24c98caef1a9a
  • actions-runner-linux-arm-2.331.0.tar.gz f233d41c2080d9c8ae7533857c4ff6a3d3d7102632ce441fc400e0339c5b76cc

v2.330.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.329.0...v2.330.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.330.0/actions-runner-win-x64-2.330.0.zip -OutFile actions-runner-win-x64-2.330.0.zip

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

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

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.330.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.330.0/actions-runner-osx-arm64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.330.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.330.0/actions-runner-linux-x64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.330.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.330.0/actions-runner-linux-arm64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.330.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.330.0/actions-runner-linux-arm-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.330.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.330.0.zip a7469e7f2949657327fdd75688fd8858e1352202847d024d68b93de033990779
  • actions-runner-win-arm64-2.330.0.zip d6b713c83263e2498931488079a3a20770d4a205a47fac51da86026e45754596
  • actions-runner-osx-x64-2.330.0.tar.gz 40a32b7b87e25b76b595e201e0af376fcb1c3b7838fe21452909756090473ea9
  • actions-runner-osx-arm64-2.330.0.tar.gz e7515e45f6de15e37e6f1667bb2f962fb535a86689af1f9b219860300d06de1b
  • actions-runner-linux-x64-2.330.0.tar.gz af5c33fa94f3cc33b8e97937939136a6b04197e6dadfcfb3b6e33ae1bf41e79a
  • actions-runner-linux-arm64-2.330.0.tar.gz 9cb43527912086c7c8fb4119cb06409fcbcbd6f93a2d8507f30b07c495620f5c
  • actions-runner-linux-arm-2.330.0.tar.gz 2bb261a52054e08cbfe899a47e7a8ce97267eb73bc30282cc718d2620b320f6a

v2.329.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.328.0...v2.329.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.329.0/actions-runner-win-x64-2.329.0.zip -OutFile actions-runner-win-x64-2.329.0.zip

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

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

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.329.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.329.0/actions-runner-osx-arm64-2.329.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.329.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.329.0/actions-runner-linux-x64-2.329.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.329.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.329.0/actions-runner-linux-arm64-2.329.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.329.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.329.0/actions-runner-linux-arm-2.329.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.329.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.329.0.zip f60be5ddf373c52fd735388c3478536afd12bfd36d1d0777c6b855b758e70f25
  • actions-runner-win-arm64-2.329.0.zip 68c38a172b569ba7290136f3051e28aca4e1a0a3d40e68ec352d100907c2e927
  • actions-runner-osx-x64-2.329.0.tar.gz c5a14e84b358c72ca83bf14518e004a8ad195cc440322fbca2a4fec7649035c7
  • actions-runner-osx-arm64-2.329.0.tar.gz 50c0d409040cc52e701ac1d5afb4672cb7803a65c1292a30e96c42051dfa690f
  • actions-runner-linux-x64-2.329.0.tar.gz 194f1e1e4bd02f80b7e9633fc546084d8d4e19f3928a324d512ea53430102e1d
  • actions-runner-linux-arm64-2.329.0.tar.gz 56768348b3d643a6a29d4ad71e9bdae0dc0ef1eb01afe0f7a8ee097b039bfaaf
  • actions-runner-linux-arm-2.329.0.tar.gz b958284b8af869bd6d3542210fbd23702449182ba1c2b1b1eef575913434f13a

v2.328.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.327.1...v2.328.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.328.0/actions-runner-win-x64-2.328.0.zip -OutFile actions-runner-win-x64-2.328.0.zip

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

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

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.328.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.328.0/actions-runner-osx-arm64-2.328.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.328.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.328.0/actions-runner-linux-x64-2.328.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.328.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.328.0/actions-runner-linux-arm64-2.328.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.328.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.328.0/actions-runner-linux-arm-2.328.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.328.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.328.0.zip a73ae192b8b2b782e1d90c08923030930b0b96ed394fe56413a073cc6f694877
  • actions-runner-win-arm64-2.328.0.zip 4635a32df9bf26df153dd139d14ae393860d489628259aac480f177c6aad53c9
  • actions-runner-osx-x64-2.328.0.tar.gz 90c32dc6f292855339563148f3859dc5d402f237ecdf57010c841df3c8d12cc8
  • actions-runner-osx-arm64-2.328.0.tar.gz 30e8c9e34ae3f1f5004d0fd6eb4e42714d1b489ca9c91f5eed3bcbd29c6f446d
  • actions-runner-linux-x64-2.328.0.tar.gz 01066fad3a2893e63e6ca880ae3a1fad5bf9329d60e77ee15f2b97c148c3cd4e
  • actions-runner-linux-arm64-2.328.0.tar.gz b801b9809c4d9301932bccadf57ca13533073b2aa9fa9b8e625a8db905b5d8eb
  • actions-runner-linux-arm-2.328.0.tar.gz 530bb83124f38edc9b410fbcc0a8b0baeaa336a14e3707acc8ca308fe0cb7540

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 c6f837fbfce536b4bbb934201947956dfcdb34960e9f986

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 changed the title chore(deps): update dependency actions/runner to v2.322.0 chore(deps): update dependency actions/runner to v2.323.0 Mar 19, 2025
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from 1969582 to 2b4173f Compare March 19, 2025 19:59
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from 2b4173f to 7f2bbaa Compare May 13, 2025 03:56
@renovate renovate bot changed the title chore(deps): update dependency actions/runner to v2.323.0 chore(deps): update dependency actions/runner to v2.324.0 May 13, 2025
@renovate renovate bot changed the title chore(deps): update dependency actions/runner to v2.324.0 chore(deps): update dependency actions/runner to v2.325.0 Jun 2, 2025
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from 7f2bbaa to 87b2e75 Compare June 2, 2025 20:30
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from 87b2e75 to 959b5fc Compare July 7, 2025 23:27
@renovate renovate bot changed the title chore(deps): update dependency actions/runner to v2.325.0 chore(deps): update dependency actions/runner to v2.326.0 Jul 7, 2025
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from 959b5fc to c7897cb Compare July 22, 2025 21:06
@renovate renovate bot changed the title chore(deps): update dependency actions/runner to v2.326.0 chore(deps): update dependency actions/runner to v2.327.0 Jul 22, 2025
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from c7897cb to 63d6d31 Compare July 25, 2025 16:39
@renovate renovate bot changed the title chore(deps): update dependency actions/runner to v2.327.0 chore(deps): update dependency actions/runner to v2.327.1 Jul 25, 2025
@renovate renovate bot changed the title chore(deps): update dependency actions/runner to v2.327.1 chore(deps): update dependency actions/runner to v2.328.0 Aug 13, 2025
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from 63d6d31 to f0acd8c Compare August 13, 2025 18:28
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from f0acd8c to c2b4e7a Compare October 14, 2025 19:04
@renovate renovate bot changed the title chore(deps): update dependency actions/runner to v2.328.0 chore(deps): update dependency actions/runner to v2.329.0 Oct 14, 2025
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from c2b4e7a to 6e80cff Compare November 19, 2025 18:01
@renovate renovate bot changed the title chore(deps): update dependency actions/runner to v2.329.0 chore(deps): update dependency actions/runner to v2.330.0 Nov 19, 2025
@renovate renovate bot force-pushed the renovate/actions-runner-2.x branch from 6e80cff to 2509f8a Compare January 9, 2026 17:40
@renovate renovate bot changed the title chore(deps): update dependency actions/runner to v2.330.0 chore(deps): update dependency actions/runner to v2.331.0 Jan 9, 2026
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.

0 participants