Releases: canonical/github-actions-runner
v2.331.0
What's Changed
- Fix owner of /home/runner directory by @nikola-jokic in actions#4132
- Update Docker to v29.0.2 and Buildx to v0.30.1 by @github-actions[bot] in actions#4135
- Update workflow around runner docker image. by @TingluoHuang in actions#4133
- Fix regex for validating runner version format by @TingluoHuang in actions#4136
- chore: update Node versions by @github-actions[bot] in actions#4144
- Ensure safe_sleep tries alternative approaches by @TingluoHuang in actions#4146
- Bump actions/github-script from 7 to 8 by @dependabot[bot] in actions#4137
- Bump actions/checkout from 5 to 6 by @dependabot[bot] in actions#4130
- chore: update Node versions by @github-actions[bot] in actions#4149
- Bump docker image to use ubuntu 24.04 by @TingluoHuang in actions#4018
- Add support for case function by @AllanGuigou in actions#4147
- Cleanup feature flag actions_container_action_runner_temp by @ericsciple in actions#4163
- Bump actions/download-artifact from 6 to 7 by @dependabot[bot] in actions#4155
- Bump actions/upload-artifact from 5 to 6 by @dependabot[bot] in actions#4157
- Set ACTIONS_ORCHESTRATION_ID as env to actions. by @TingluoHuang in actions#4178
- Allow hosted VM report job telemetry via .setup_info file. by @TingluoHuang in actions#4186
- Bump typescript from 5.9.2 to 5.9.3 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4184
- Bump Azure.Storage.Blobs from 12.26.0 to 12.27.0 by @dependabot[bot] in actions#4189
New Contributors
- @AllanGuigou made their first contribution in actions#4147
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.gzOSX 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.gzLinux 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.gzLinux 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.gzLinux 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.gzUsing 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 <WIN_X64_SHA>
- actions-runner-win-arm64-2.331.0.zip <WIN_ARM64_SHA>
- actions-runner-osx-x64-2.331.0.tar.gz <OSX_X64_SHA>
- actions-runner-osx-arm64-2.331.0.tar.gz <OSX_ARM64_SHA>
- actions-runner-linux-x64-2.331.0.tar.gz d64be2982dc3f4dfb797501bce631ee4f6232ffa541ec24d3b6e0f21de9186d7
- actions-runner-linux-arm64-2.331.0.tar.gz 8265ad34636f8cf005ec6f07d288f46949eaee687c462439b11de3f5c404a7cb
- actions-runner-linux-arm-2.331.0.tar.gz <LINUX_ARM_SHA>
v2.330.0
What's Changed
- Custom Image: Preflight checks by @lawrencegripper in actions#4081
- Update dotnet sdk to latest version @8.0.415 by @github-actions[bot] in actions#4080
- Link to an extant discussion category by @jsoref in actions#4084
- Improve logic around decide IsHostedServer. by @TingluoHuang in actions#4086
- chore: update Node versions by @github-actions[bot] in actions#4093
- Compare updated template evaluator by @ericsciple in actions#4092
- fix(dockerfile): set more lenient permissions on /home/runner by @caxu-rh in actions#4083
- Add support for libicu73-76 for newer Debian/Ubuntu versions by @lets-build-an-ocean in actions#4098
- Bump actions/download-artifact from 5 to 6 by @dependabot[bot] in actions#4089
- Bump actions/upload-artifact from 4 to 5 by @dependabot[bot] in actions#4088
- Bump Azure.Storage.Blobs from 12.25.1 to 12.26.0 by @dependabot[bot] in actions#4077
- Only start runner after network is online by @dupondje in actions#4094
- Retry http error related to DNS resolution failure. by @TingluoHuang in actions#4110
- Update Docker to v29.0.1 and Buildx to v0.30.0 by @github-actions[bot] in actions#4114
- chore: update Node versions by @github-actions[bot] in actions#4115
- Update dotnet sdk to latest version @8.0.416 by @github-actions[bot] in actions#4116
- Compare updated workflow parser for ActionManifestManager by @ericsciple in actions#4111
- Bump npm pkg version for hashFiles. by @TingluoHuang in actions#4122
New Contributors
- @lawrencegripper made their first contribution in actions#4081
- @caxu-rh made their first contribution in actions#4083
- @lets-build-an-ocean made their first contribution in actions#4098
- @dupondje made their first contribution in actions#4094
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.gzOSX 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.gzLinux 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.gzLinux 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.gzLinux 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.gzUsing 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 <WIN_X64_SHA>
- actions-runner-win-arm64-2.330.0.zip <WIN_ARM64_SHA>
- actions-runner-osx-x64-2.330.0.tar.gz <OSX_X64_SHA>
- actions-runner-osx-arm64-2.330.0.tar.gz <OSX_ARM64_SHA>
- actions-runner-linux-x64-2.330.0.tar.gz b08e75807a051fbfae7b0f56acd1403815ddd8fc537c18fdfd947517c975f0f7
- actions-runner-linux-arm64-2.330.0.tar.gz 0afbc502a469baacc8f4875e492c421d1e0b5ca3ea81fbe6caf1d206781e78a7
- actions-runner-linux-arm-2.330.0.tar.gz <LINUX_ARM_SHA>
v2.328.0
What's Changed
- Update Docker to v28.3.2 and Buildx to v0.26.1 by @github-actions[bot] in actions#3953
- Fix if statement structure in update script and variable reference by @salmanmkc in actions#3956
- Add V2 flow for runner deletion by @Samirat in actions#3954
- Node 20 -> Node 24 migration feature flagging, opt-in and opt-out environment variables by @salmanmkc in actions#3948
- Update Node20 and Node24 to latest by @djs-intel in actions#3972
- Redirect supported OS doc section to current public Docs location by @corycalahan in actions#3979
- Bump Microsoft.NET.Test.Sdk from 17.13.0 to 17.14.1 by @dependabot[bot] in actions#3975
- Bump Azure.Storage.Blobs from 12.24.0 to 12.25.0 by @dependabot[bot] in actions#3974
- Bump actions/download-artifact from 4 to 5 by @dependabot[bot] in actions#3973
- Bump actions/checkout from 4 to 5 by @dependabot[bot] in actions#3982
New Contributors
- @Samirat made their first contribution in actions#3954
- @djs-intel made their first contribution in actions#3972
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.gzOSX 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.gzLinux 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.gzLinux 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.gzLinux 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.gzUsing 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 <WIN_X64_SHA>
- actions-runner-win-arm64-2.328.0.zip <WIN_ARM64_SHA>
- actions-runner-osx-x64-2.328.0.tar.gz <OSX_X64_SHA>
- actions-runner-osx-arm64-2.328.0.tar.gz <OSX_ARM64_SHA>
- actions-runner-linux-x64-2.328.0.tar.gz e36641f61a7ecf18a97f6899df7d8eea5b0769236c69174e4a1e5a34da8e5210
- actions-runner-linux-arm64-2.328.0.tar.gz 913abea6e9a093c745f4f4cc575fee0f99d42eeab9a56cb6f0ddde4319836e89
- actions-runner-linux-arm-2.328.0.tar.gz <LINUX_ARM_SHA>
v2.327.1
What's Changed
- Try add orchestrationid into user-agent using token claim. by @TingluoHuang in actions#3945
- Fix null reference exception in user agent handling by @salmanmkc in actions#3946
- Runner Support for executing Node24 Actions by @salmanmkc in actions#3940
- Update dotnet sdk to latest version @8.0.412 by @github-actions[bot] in actions#3941
New Contributors
- @salmanmkc made their first contribution in actions#3946
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.gzOSX 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.gzLinux 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.gzLinux 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.gzLinux 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.gzUsing 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 <WIN_X64_SHA>
- actions-runner-win-arm64-2.327.1.zip <WIN_ARM64_SHA>
- actions-runner-osx-x64-2.327.1.tar.gz <OSX_X64_SHA>
- actions-runner-osx-arm64-2.327.1.tar.gz <OSX_ARM64_SHA>
- actions-runner-linux-x64-2.327.1.tar.gz be4bb0510e71e9cdee88807a8801c98bd311a6884ac7de6af8647dbeb6d8e1ca
- actions-runner-linux-arm64-2.327.1.tar.gz e212481513ffb170e6e7f09b4ed4851d9fb25bc00177325b1e9f7a263e3c6b25
- actions-runner-linux-arm-2.327.1.tar.gz <LINUX_ARM_SHA>
v2.325.0
Manual release of https://github.com/actions/runner/releases/tag/v2.325.0 for s390x and ppc64le architecture.
v2.324.0
Manual release of https://github.com/actions/runner/releases/tag/v2.324.0 for s390x and ppc64le architecture.
v2.323.0
Manual release of https://github.com/actions/runner/releases/tag/v2.323.0 for s390x and ppc64le architecture.
v2.322.0
Manual release of https://github.com/actions/runner/releases/tag/v2.322.0 for s390x architecture.