Releases: ubicloud/runner
v2.329.0
What's Changed
- Update safe_sleep.sh for bug when scheduler is paused for more than 1 second by @horner in actions#3157
 - Acknowledge runner request by @ericsciple in actions#3996
 - Update Docker to v28.3.3 and Buildx to v0.27.0 by @github-actions[bot] in actions#3999
 - Update dotnet sdk to latest version @8.0.413 by @github-actions[bot] in actions#4000
 - Bump actions/attest-build-provenance from 2 to 3 by @dependabot[bot] in actions#4002
 - Bump @typescript-eslint/eslint-plugin from 6.7.2 to 8.35.0 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#3920
 - Bump husky from 8.0.3 to 9.1.7 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#3842
 - Bump @vercel/ncc from 0.38.0 to 0.38.3 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#3841
 - Bump eslint-plugin-github from 4.10.0 to 4.10.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#3180
 - Bump typescript from 5.2.2 to 5.9.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4007
 - chore: migrate Husky config from v8 to v9 format by @salmanmkc in actions#4003
 - Map RUNNER_TEMP for container action by @ericsciple in actions#4011
 - Break UseV2Flow into UseV2Flow and UseRunnerAdminFlow. by @TingluoHuang in actions#4013
 - Update Docker to v28.4.0 and Buildx to v0.28.0 by @github-actions[bot] in actions#4020
 - Bump node.js to latest version in runner. by @TingluoHuang in actions#4022
 - feat: add automated .NET dependency management workflow by @salmanmkc in actions#4028
 - feat: add automated Docker BuildX dependency management workflow by @salmanmkc in actions#4029
 - feat: add automated Node.js version management workflow by @salmanmkc in actions#4026
 - feat: add comprehensive NPM security management workflow by @salmanmkc in actions#4027
 - feat: add comprehensive dependency monitoring system by @salmanmkc in actions#4025
 - Use BrokerURL when using RunnerAdmin by @luketomlinson in actions#4044
 - Bump actions/github-script from 7.0.1 to 8.0.0 by @dependabot[bot] in actions#4016
 - Bump actions/stale from 9 to 10 by @dependabot[bot] in actions#4015
 - fix: prevent Node.js upgrade workflow from creating PRs with empty versions by @salmanmkc in actions#4055
 - chore: update Node versions by @github-actions[bot] in actions#4057
 - Bump actions/setup-node from 4 to 5 by @dependabot[bot] in actions#4037
 - Bump Azure.Storage.Blobs from 12.25.0 to 12.25.1 by @dependabot[bot] in actions#4058
 - Update Docker to v28.5.0 and Buildx to v0.29.1 by @github-actions[bot] in actions#4069
 - Bump github/codeql-action from 3 to 4 by @dependabot[bot] in actions#4072
 - chore: update Node versions by @github-actions[bot] in actions#4075
 - Include k8s novolume (version v0.8.0) by @nikola-jokic in actions#4063
 - Make sure runner-admin has both auth_url and auth_url_v2. by @TingluoHuang in actions#4066
 - Report job has infra failure to run-service by @TingluoHuang in actions#4073
 - Bump actions/setup-node from 5 to 6 by @dependabot[bot] in actions#4078
 
New Contributors
- @horner made their first contribution in actions#3157
 
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.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.329.0/actions-runner-osx-arm64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.329.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.329.0/actions-runner-linux-x64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.329.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.329.0/actions-runner-linux-arm64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.329.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.329.0/actions-runner-linux-arm-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.329.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.329.0.zip 006a2406241917f031db26f65859b367912a346cdc8cd56175fc3fb4b3b48d33
 - actions-runner-win-arm64-2.329.0.zip 0fc7b3834eb41cc01882d088cdc0d8cba97109b2e859ddbe598fdc6e0c1c183e
 - actions-runner-osx-x64-2.329.0.tar.gz 9e101e3d2f1056f480cc42c9565125d207a6a4f6745a0275dd75356fdffd6e6f
 - actions-runner-osx-arm64-2.329.0.tar.gz d6868baf7f46f4afd860862d572ba505acd9a9dc927892d160df78c6ff79e54a
 - actions-runner-linux-x64-2.329.0.tar.gz 5699aee6a9d704211b9e4fabfa2aaa2997d25003df7f7b411a0a5a78436dadc3
 - actions-runner-linux-arm64-2.329.0.tar.gz 5706eecfc2fa03e5e6a34b43ae6252da3fbfede01811b0ed0fe22dfb6c7d0cf8
 - actions-runner-linux-arm-2.329.0.tar.gz 939b2be00410337f418e7139a8ecb3ddec813fcf1bd5d8b7c763ec396b2e0ce1
 
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 ba26aacc792ae9482e37f669ab9168471bacbfefe634d00e9a8dc84316689ff4
 - actions-runner-win-arm64-2.328.0.zip b8c877f4e4bc2629cb66fb66df04a9d76d255f10cc725f8f125c3b14e9a56f39
 - actions-runner-osx-x64-2.328.0.tar.gz 542c03ef626729b6a35661bd6135fe96fb61778783bdf13af4fad71f311ecccf
 - actions-runner-osx-arm64-2.328.0.tar.gz b12cc4ee133d834c5edf02871fa073183fe5e50d0e9b7eb9575ec80af545b34b
 - actions-runner-linux-x64-2.328.0.tar.gz 6445ef0998e3bfa6867f8cd1bd55ab6b9641d46478a8a9ae8948d00633d7c504
 - actions-runner-linux-arm64-2.328.0.tar.gz f42299de8bf88070eb1dbeb9cd3b4a38154864193282dd07b58b9020dfad8ef0
 - actions-runner-linux-arm-2.328.0.tar.gz da3948a19cd5a1a8021f5552dac79ed2ecaa4b6a423af7e72010e708e31493ea
 
v2.327.0
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.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.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.0/actions-runner-osx-arm64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.327.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.327.0/actions-runner-linux-x64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.327.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.327.0/actions-runner-linux-arm64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.327.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.327.0/actions-runner-linux-arm-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.327.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.327.0.zip 1e54fb483f645c111c7a505e645eb74738e06880e97b043b65bae2b4ff4e54c7
 - actions-runner-win-arm64-2.327.0.zip 6aed13ecb2b2bdbbca115bf99f5b514ac3e83feca87a13ffbda82f3a47dd4aff
 - actions-runner-osx-x64-2.327.0.tar.gz 231d829df45fd3c9ae0d47cd10f5ba271c0e7d364d6c94248325210c32e57984
 - actions-runner-osx-arm64-2.327.0.tar.gz 506c42c2af1e4da5f4b1f58119097a7f2a57a1c7a2d91bc33a169157f12b5f12
 - actions-runner-linux-x64-2.327.0.tar.gz ab1d9a34992576d3f5a875f63be25c66e71e1c5d728705e09a4f2db871264c46
 - actions-runner-linux-arm64-2.327.0.tar.gz b73a9f10d0e7d182f0dae7331a4e984cf1af36175a563aeb54f5ef589e547ca5
 - actions-runner-linux-arm-2.327.0.tar.gz cfe2f7293b26b2d53b427868e35fdf11a2adeec0b504218e06d99f7b38e877c1
 
v2.326.0
What's Changed
- runner timestamps invariant by @GhadimiR in actions#3888
 - Update README.md by @nebuk89 in actions#3898
 - Update dotnet sdk to latest version @8.0.411 by @github-actions in actions#3911
 - Update Docker to v28.2.2 and Buildx to v0.25.0 by @github-actions in actions#3918
 - Bump windows service app to dotnet 4.7 by @TingluoHuang in actions#3926
 - Upgrade node.js to latest version. by @TingluoHuang in actions#3935
 
New Contributors
- @nebuk89 made their first contribution in actions#3898
 
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.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.326.0/actions-runner-osx-arm64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.326.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.326.0/actions-runner-linux-x64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.326.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.326.0/actions-runner-linux-arm64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.326.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.326.0/actions-runner-linux-arm-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.326.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.326.0.zip 03f52e6bc4aa0477b2c36d2a233b47630c782000a50b4a13829b5143b41d9355
 - actions-runner-win-arm64-2.326.0.zip 71221cd5399d4c1a361f1bcd329bb5c7937b655187e2ff1052537fcbd3c68651
 - actions-runner-osx-x64-2.326.0.tar.gz 0938b0358b8e744dc2be097898a81e64f2571e856cf5173dd75ce6562ecb0839
 - actions-runner-osx-arm64-2.326.0.tar.gz 37756f0c576641b170c70e1cf972453efee21725c21afd66409ca32865b450bf
 - actions-runner-linux-x64-2.326.0.tar.gz 28745a08d8a4e44253a6bf2bcadc7da4cc7704fe3ee985c26093619a80d9e246
 - actions-runner-linux-arm64-2.326.0.tar.gz ac5c04fa652f3b308158eabf333a294a308883daded31976747a33e751aa24dd
 - actions-runner-linux-arm-2.326.0.tar.gz 624b30b25ea5293f68099fcd3bf22a93af4b93cb31c0a68482e787fe1aabab12
 
v2.325.0
What's Changed
- Create schedule workflow to upgrade docker and buildx version. by @TingluoHuang in actions#3859
 - Update dotnet sdk to latest version @8.0.409 by @github-actions in actions#3860
 - Allow runner to use authv2 during config. by @TingluoHuang in actions#3866
 - show helpful error message when resolving actions directly with launch by @aiqiaoy in actions#3874
 - Update dotnet sdk to latest version @8.0.410 by @github-actions in actions#3871
 - Update Docker to v28.2.1 and Buildx to v0.24.0 by @github-actions in actions#3881
 - Allow NO_SSL_VERIFY in RawHttpMessageHandler. by @TingluoHuang in actions#3883
 
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.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.325.0/actions-runner-osx-arm64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.325.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.325.0/actions-runner-linux-x64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.325.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.325.0/actions-runner-linux-arm64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.325.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.325.0/actions-runner-linux-arm-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.325.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.325.0.zip 929c123f10ea070d058a20cf462f7c4671634b157dbd6cccffd646f8638aca29
 - actions-runner-win-arm64-2.325.0.zip 925571dba698c2e1cfec5aa7208feb0f18f24382bd3b201e3815ec153091ae47
 - actions-runner-osx-x64-2.325.0.tar.gz d66eec90b70f17a1cd919275eac3cc57cd4926d1be44468d3b76fed644498a0c
 - actions-runner-osx-arm64-2.325.0.tar.gz f72a85e7fe74d1809563e20da98287ef3b79d72a14b6b785c30a38b38dc27696
 - actions-runner-linux-x64-2.325.0.tar.gz 4d94b95303e2abb3e3fede698ce0c306dbbed11227b688c67ecba1f2fbebf27f
 - actions-runner-linux-arm64-2.325.0.tar.gz 13358d8156c7677dcf82fd5105bf2a512f831989ea972f601c44c515ef5ac06e
 - actions-runner-linux-arm-2.325.0.tar.gz 0fcfecd7770fc7ea9c9d99aeab6bfc94fe830bcadfc7586018a3a6b306a2eaa4
 
v2.324.0
What's Changed
- Increase error body max length before truncation by @ericsciple in actions#3762
 - Fix release.yml break by upgrading actions/github-script by @TingluoHuang in actions#3772
 - Small runner code cleanup. by @TingluoHuang in actions#3773
 - Enable hostcontext to track auth migration. by @TingluoHuang in actions#3776
 - Add option in OAuthCred to load authUrlV2. by @TingluoHuang in actions#3777
 - Remove create session with broker in MessageListener. by @TingluoHuang in actions#3782
 - Enable auth migration based on config refresh. by @TingluoHuang in actions#3786
 - Set JWT.alg to PS256 with PssPadding. by @TingluoHuang in actions#3789
 - Enable FIPS by default. by @TingluoHuang in actions#3793
 - Support auth migration using authUrlV2 in Runner/MessageListener. by @TingluoHuang in actions#3787
 - Cleanup feature flag actions_skip_retry_complete_job_upon_known_errors by @ericsciple in actions#3806
 - Update dotnet sdk to latest version @8.0.408 by @github-actions in actions#3808
 - Bump hook to 0.7.0 by @nikola-jokic in actions#3813
 - Allow enable auth migration by default. by @TingluoHuang in actions#3804
 - Do not retry /renewjob on 404 by @ericsciple in actions#3828
 - Bump Microsoft.NET.Test.Sdk from 17.12.0 to 17.13.0 in /src by @dependabot in actions#3719
 - Add copilot-instructions.md by @pje in actions#3810
 - Bump actions/upload-release-asset from 1.0.1 to 1.0.2 by @dependabot in actions#3553
 - Ignore exception during auth migration. by @TingluoHuang in actions#3835
 - feat: default fromPath for problem matchers by @dsanders11 in actions#3802
 - Bump Azure.Storage.Blobs from 12.23.0 to 12.24.0 in /src by @dependabot in actions#3837
 - Bump nodejs version. by @TingluoHuang in actions#3840
 - Feature-flagged support for 
JobContext.CheckRunIDby @pje in actions#3811 - Bump System.ServiceProcess.ServiceController from 8.0.0 to 8.0.1 in /src by @dependabot in actions#3844
 - Bump xunit.runner.visualstudio from 2.5.8 to 2.8.2 in /src by @dependabot in actions#3845
 - Make sure the token's claims are match as expected. by @TingluoHuang in actions#3846
 - Prefer _migrated config on startup by @lokesh755 in actions#3853
 - Update docker and buildx by @TingluoHuang in actions#3854
 
New Contributors
- @dsanders11 made their first contribution in actions#3802
 
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.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.324.0/actions-runner-osx-arm64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.324.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.324.0/actions-runner-linux-x64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.324.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.324.0/actions-runner-linux-arm64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.324.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.324.0/actions-runner-linux-arm-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.324.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.324.0.zip 5da4ecb0c5f25bfa67d2f55536e5890a92fcae6cc6e503137f1993d3e6d39faa
 - actions-runner-win-arm64-2.324.0.zip 3f7cd851ef5aac7c7f1764b5a883dbdd908b62ff5b023eb04c1bd77af90a1db8
 - actions-runner-osx-x64-2.324.0.tar.gz 5e911cfd35309e6e46a4839065b407011849527acedf6b75ac61871305c42644
 - actions-runner-osx-arm64-2.324.0.tar.gz da213946b12b30f577844230c655c66398010591bd476fb5145f0612c0b08420
 - actions-runner-linux-x64-2.324.0.tar.gz 03955d88ba7c304635c1c15f7eeae019cfa45eb7e785c1cf64ddae5d70c22a60
 - actions-runner-linux-arm64-2.324.0.tar.gz 2e89c56d843503308362e1a07ee64b1ec4f57adcc6345ae43ee1be2b4d22c490
 - actions-runner-linux-arm-2.324.0.tar.gz 1fae7108f63cc6ae591716d8fb089fd29d13a67b55811d66533721f57f26197e
 
v2.323.0
What's Changed
- Bump docker/login-action from 2 to 3 by @dependabot in actions#3673
 - Bump actions/stale from 8 to 9 by @dependabot in actions#3554
 - Bump docker/build-push-action from 3 to 6 by @dependabot in actions#3674
 - update node version from 20.18.0 -> 20.18.2 by @aiqiaoy in actions#3682
 - Pass BillingOwnerId through Acquire/Complete calls by @luketomlinson in actions#3689
 - Do not retry CompleteJobAsync for known non-retryable errors by @ericsciple in actions#3696
 - Update dotnet sdk to latest version @8.0.406 by @github-actions in actions#3712
 - Update Dockerfile with new docker and buildx versions by @thboop in actions#3680
 - chore: remove redundant words by @finaltrip in actions#3705
 - fix: actions feedback link is incorrect by @Yaminyam in actions#3165
 - Bump actions/github-script from 0.3.0 to 7.0.1 by @dependabot in actions#3557
 - Docker container provenance by @paveliak in actions#3736
 - Add request-id to http eventsource trace. by @TingluoHuang in actions#3740
 - Update Bocker and Buildx version to mitigate images scanners alerts by @Blizter in actions#3750
 - Fix typo, add invariant culture to timestamp for workflow log reporting by @GhadimiR in actions#3749
 - Create vssconnection to actions service when URL provided. by @TingluoHuang in actions#3751
 - Housekeeping: Update npm packages and node version by @thboop in actions#3752
 - Improve the out-of-date warning message. by @tecimovic in actions#3595
 - Update dotnet sdk to latest version @8.0.407 by @github-actions in actions#3753
 - Exit hosted runner cleanly during deprovisioning. by @TingluoHuang in actions#3755
 - Send annotation title to run-service. by @TingluoHuang in actions#3757
 - Allow server enforce runner settings. by @TingluoHuang in actions#3758
 - Support refresh runner configs with pipelines service. by @TingluoHuang in actions#3706
 
New Contributors
- @finaltrip made their first contribution in actions#3705
 - @Yaminyam made their first contribution in actions#3165
 - @Blizter made their first contribution in actions#3750
 - @GhadimiR made their first contribution in actions#3749
 - @tecimovic made their first contribution in actions#3595
 
Full Changelog: actions/runner@v2.322.0...v2.323.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.323.0/actions-runner-win-x64-2.323.0.zip -OutFile actions-runner-win-x64-2.323.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.323.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.323.0/actions-runner-win-arm64-2.323.0.zip -OutFile actions-runner-win-arm64-2.323.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.323.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.323.0/actions-runner-osx-x64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.323.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.323.0/actions-runner-osx-arm64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.323.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.323.0/actions-runner-linux-x64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.323.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.323.0/actions-runner-linux-arm64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.323.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.323.0/actions-runner-linux-arm-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.323.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.323.0.zip a507696e6f3f0d7cd03fb27b2f7e03c92b5d4eb867bc4f4976a8403aaa6d771a
 - actions-runner-win-arm64-2.323.0.zip 8c27130a7cecba1447e21c47bf166f0e12a96d3e2b2b84c0fe5753a95743431f
 - actions-runner-osx-x64-2.323.0.tar.gz b91fc56572db667256a313e538c1738bcfd69d96efbed4104e90c3f0112b8fd8
 - actions-runner-osx-arm64-2.323.0.tar.gz 7415ab268f279086bf3bb586c80b4982b63be2e37cff0418dba49b0877d88d1f
 - actions-runner-linux-x64-2.323.0.tar.gz 654dafa5825680eb37e7e109792127b80b0d67d36164be30ed63163c1bbf1f2e
 - actions-runner-linux-arm64-2.323.0.tar.gz 886b2825835edcc771bf158f3e9f9cfbc466571e403f8b20889286083f219568
 - actions-runner-linux-arm-2.323.0.tar.gz afad76d14cd8bddbe5c82cd1f5915326d4c1212367ab32b0c2a6db947ebeda23
 
v2.322.0
What's Changed
- Fix name of generated of artifact builds from GitHub workflow for arm artifacts by @satmandu in actions#3568
 - Ignore error when fail to report worker crash. by @TingluoHuang in actions#3588
 - Fix null ref in 'OnEventWritten()' by @TingluoHuang in actions#3593
 - Send stepNumber for annotation to run-service by @TingluoHuang in actions#3614
 - Enable nuget audit. by @TingluoHuang in actions#3615
 - Update dotnet install script. by @TingluoHuang in actions#3659
 - Print immutable action package details in set up job logs by @heavymachinery in actions#3645
 - Update dotnet sdk to latest version @8.0.405 by @github-actions in actions#3666
 - Upgrade 
buildxfrom0.18.0to0.19.3(critical CVE) by @MPV in actions#3647 - Upgrade 
dockerfrom27.3.1to27.4.1by @MPV in actions#3648 - Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.12.0 in /src by @dependabot in actions#3584
 - Bump docker/setup-buildx-action from 2 to 3 by @dependabot in actions#3564
 - Bump github/codeql-action from 2 to 3 by @dependabot in actions#3555
 - Bump Moq from 4.20.70 to 4.20.72 in /src by @dependabot in actions#3672
 
New Contributors
- @satmandu made their first contribution in actions#3568
 
Full Changelog: actions/runner@v2.321.0...v2.322.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.322.0/actions-runner-win-x64-2.322.0.zip -OutFile actions-runner-win-x64-2.322.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.322.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.322.0/actions-runner-win-arm64-2.322.0.zip -OutFile actions-runner-win-arm64-2.322.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.322.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.322.0/actions-runner-osx-x64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.322.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.322.0/actions-runner-osx-arm64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.322.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.322.0/actions-runner-linux-x64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.322.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.322.0/actions-runner-linux-arm64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.322.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.322.0/actions-runner-linux-arm-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.322.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.322.0.zip 36578ba923ae997f83d6972c673855156ae2d1eccfbb3ab450e818a50ead1213
 - actions-runner-win-arm64-2.322.0.zip c6ee1f334a4c4c93398f6cca275390da179bf9acff55b42f70eec03d6df14f4f
 - actions-runner-osx-x64-2.322.0.tar.gz 98f51f9baa01ad855deaed80fdc996d03d862428a96cfa998b7421214d2144c2
 - actions-runner-osx-arm64-2.322.0.tar.gz 228da003cc1016bbafdb0bab91224ee77b796b8755fc5ca4ed36eaf4781c80af
 - actions-runner-linux-x64-2.322.0.tar.gz 8f92e9b4a958a20e3e45592b101c6d6154e27741bd37c26d773e123bac6056cd
 - actions-runner-linux-arm64-2.322.0.tar.gz 0634ff50407100c0bfbae2bf6929657c531332fef6d4044bb5614a62ba30c95a
 - actions-runner-linux-arm-2.322.0.tar.gz 7d4426e3cb9c1667af6cf9000868fbadc08be1ff26f6bcdf4c989643ed33d954
 
v2.321.0
What's Changed
- Fix release workflow to use distinct artifact names by @ericsciple in actions#3485
 - Update dotnet sdk to latest version @6.0.425 by @github-actions in actions#3433
 - add ref and type to job completion in run service by @yaananth in actions#3492
 - Remove Broker Migration Message logging by @luketomlinson in actions#3493
 - Bump dotnet SDK to dotnet 8. by @TingluoHuang in actions#3500
 - Remove dotnet8 compatibility test. by @TingluoHuang in actions#3502
 - Remove node16 from the runner. by @TingluoHuang in actions#3503
 - send action name for run service by @yaananth in actions#3520
 - Handle runner not found by @ericsciple in actions#3536
 - Publish job telemetry to run-service. by @TingluoHuang in actions#3545
 - Fetch repo-level runner groups from API in v2 flow by @lucavallin in actions#3546
 - Allow runner to check service connection in background. by @TingluoHuang in actions#3542
 - Expose ENV for cache service v2. by @TingluoHuang in actions#3548
 - Update runner docker image. by @TingluoHuang in actions#3511
 - Bump Azure.Storage.Blobs from 12.19.1 to 12.23.0 in /src by @dependabot in actions#3549
 - fix dotnet-upgrade.yml to print right version by @TingluoHuang in actions#3550
 - Update dotnet sdk to latest version @8.0.404 by @github-actions in actions#3552
 - Configure dependabot to check github-actions updates by @Goooler in actions#3333
 - Bump actions/checkout from 3 to 4 by @dependabot in actions#3556
 
New Contributors
- @lucavallin made their first contribution in actions#3546
 - @Goooler made their first contribution in actions#3333
 
Full Changelog: actions/runner@v2.320.0...v2.321.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.321.0/actions-runner-win-x64-2.321.0.zip -OutFile actions-runner-win-x64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.321.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.321.0/actions-runner-win-arm64-2.321.0.zip -OutFile actions-runner-win-arm64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.321.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.321.0/actions-runner-osx-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.321.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.321.0/actions-runner-osx-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.321.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.321.0/actions-runner-linux-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.321.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.321.0/actions-runner-linux-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.321.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.321.0/actions-runner-linux-arm-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.321.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.321.0.zip fdf38022f347436da62e895f9e3c3d8783faa392794d71bfbe41c57a973b87df
 - actions-runner-win-arm64-2.321.0.zip 63cb78658ceecc0ab918d4e93a2ca296b5dc110da08af4cd1e4e5927734dda0d
 - actions-runner-osx-x64-2.321.0.tar.gz 083224f1efceaa7212881ac83e9aec1d72f25461a476dc3d2b0803533dfddeaf
 - actions-runner-osx-arm64-2.321.0.tar.gz 7cc0da19fb5dd7da80b8f30c4ed55a0461c192319d820691290e5a45d0f9271b
 - actions-runner-linux-x64-2.321.0.tar.gz cc0cc220359999c6ef4c4255482bb1a96abdc9188dfe008696c023a6bbbdc5e5
 - actions-runner-linux-arm64-2.321.0.tar.gz fb14b5fd910bc1c1da08bae4ebefb2bef82610d2b19d7f58d50f4f1883281817
 - actions-runner-linux-arm-2.321.0.tar.gz 3b24bd5fc4108ab55af2112969dd52706f0b9ba432af15e7687be3d3fcce3f7d
 
v2.321.0-old1
What's Changed
- Fix release workflow to use distinct artifact names by @ericsciple in actions#3485
 - Update dotnet sdk to latest version @6.0.425 by @github-actions in actions#3433
 - add ref and type to job completion in run service by @yaananth in actions#3492
 - Remove Broker Migration Message logging by @luketomlinson in actions#3493
 - Bump dotnet SDK to dotnet 8. by @TingluoHuang in actions#3500
 - Remove dotnet8 compatibility test. by @TingluoHuang in actions#3502
 - Remove node16 from the runner. by @TingluoHuang in actions#3503
 - send action name for run service by @yaananth in actions#3520
 - Handle runner not found by @ericsciple in actions#3536
 - Publish job telemetry to run-service. by @TingluoHuang in actions#3545
 - Fetch repo-level runner groups from API in v2 flow by @lucavallin in actions#3546
 - Allow runner to check service connection in background. by @TingluoHuang in actions#3542
 - Expose ENV for cache service v2. by @TingluoHuang in actions#3548
 - Update runner docker image. by @TingluoHuang in actions#3511
 - Bump Azure.Storage.Blobs from 12.19.1 to 12.23.0 in /src by @dependabot in actions#3549
 - fix dotnet-upgrade.yml to print right version by @TingluoHuang in actions#3550
 - Update dotnet sdk to latest version @8.0.404 by @github-actions in actions#3552
 - Configure dependabot to check github-actions updates by @Goooler in actions#3333
 - Bump actions/checkout from 3 to 4 by @dependabot in actions#3556
 
New Contributors
- @lucavallin made their first contribution in actions#3546
 - @Goooler made their first contribution in actions#3333
 
Full Changelog: actions/runner@v2.320.0...v2.321.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.321.0/actions-runner-win-x64-2.321.0.zip -OutFile actions-runner-win-x64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.321.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.321.0/actions-runner-win-arm64-2.321.0.zip -OutFile actions-runner-win-arm64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.321.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.321.0/actions-runner-osx-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.321.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.321.0/actions-runner-osx-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.321.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.321.0/actions-runner-linux-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.321.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.321.0/actions-runner-linux-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.321.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.321.0/actions-runner-linux-arm-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.321.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.321.0.zip e5e231cfcc32c65906b5b569a15a1875ee6e39a98ffd57872ff9aaf5a40312d5
 - actions-runner-win-arm64-2.321.0.zip c4cf225da6f8135b7f8a767dd2c503a451b12c91badcecf9ca70e9c946cded5e
 - actions-runner-osx-x64-2.321.0.tar.gz 31fb842456916681fafa8994e9a731bbd4b6bc2862d2cdd837b1cd4a81e0981e
 - actions-runner-osx-arm64-2.321.0.tar.gz ac535e6faa58ed2137045fe8321545048cf8131654ead1f3d7c8d4ea2c68135c
 - actions-runner-linux-x64-2.321.0.tar.gz be437ef7ae1ed81a689b6de59356dcab7d553b48a4d68a4fd4d1be1db8000447
 - actions-runner-linux-arm64-2.321.0.tar.gz 5d1659a761aaae632751a72c6d6d3680aa6420bc88c776cb238b00cb5d64a7c9
 - actions-runner-linux-arm-2.321.0.tar.gz d65994f176ccd9f232447fa0595d8d9f1c81158db4dead52de8df897e164bdbe