Releases: actions/runner
v2.325.0
What's Changed
- Create schedule workflow to upgrade docker and buildx version. by @TingluoHuang in #3859
- Update dotnet sdk to latest version @8.0.409 by @github-actions in #3860
- Allow runner to use authv2 during config. by @TingluoHuang in #3866
- show helpful error message when resolving actions directly with launch by @aiqiaoy in #3874
- Update dotnet sdk to latest version @8.0.410 by @github-actions in #3871
- Update Docker to v28.2.1 and Buildx to v0.24.0 by @github-actions in #3881
- Allow NO_SSL_VERIFY in RawHttpMessageHandler. by @TingluoHuang in #3883
Full Changelog: v2.324.0...v2.325.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell
:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-win-x64-2.325.0.zip -OutFile actions-runner-win-x64-2.325.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.325.0.zip", "$PWD")
Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell
:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-win-arm64-2.325.0.zip -OutFile actions-runner-win-arm64-2.325.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.325.0.zip", "$PWD")
OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-osx-x64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.325.0.tar.gz
OSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-osx-arm64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.325.0.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-x64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.325.0.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-arm64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.325.0.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-arm-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.325.0.tar.gz
Using your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.325.0.zip 8601aa56828c084b29bdfda574af1fcde0943ce275fdbafb3e6d4a8611245b1b
- actions-runner-win-arm64-2.325.0.zip bc57c7bd5c07310481654bc8516fd42000a9bc0f2e2f8e588b6ea46c3391eb45
- actions-runner-osx-x64-2.325.0.tar.gz 0562bd934b27ca0c6d8a357df00809fbc7b4d5524d4aeb6ec152e14fd520a4c3
- actions-runner-osx-arm64-2.325.0.tar.gz 155cc00c217bdc3a74f1c0534e8e3bde1a2d9e2186f01f68a9dec185628fe749
- actions-runner-linux-x64-2.325.0.tar.gz 5020da7139d85c776059f351e0de8fdec753affc9c558e892472d43ebeb518f4
- actions-runner-linux-arm64-2.325.0.tar.gz 0e916ad0d354089d320011c132d46bdbe3353c8b925a2e1056c7c8e85d2f2490
- actions-runner-linux-arm-2.325.0.tar.gz f74f77c6437c6de3d2921e4b26a6e2e31c21cbdeb309f86648d1f4e5fa0c3eca
v2.324.0
What's Changed
- Increase error body max length before truncation by @ericsciple in #3762
- Fix release.yml break by upgrading actions/github-script by @TingluoHuang in #3772
- Small runner code cleanup. by @TingluoHuang in #3773
- Enable hostcontext to track auth migration. by @TingluoHuang in #3776
- Add option in OAuthCred to load authUrlV2. by @TingluoHuang in #3777
- Remove create session with broker in MessageListener. by @TingluoHuang in #3782
- Enable auth migration based on config refresh. by @TingluoHuang in #3786
- Set JWT.alg to PS256 with PssPadding. by @TingluoHuang in #3789
- Enable FIPS by default. by @TingluoHuang in #3793
- Support auth migration using authUrlV2 in Runner/MessageListener. by @TingluoHuang in #3787
- Cleanup feature flag actions_skip_retry_complete_job_upon_known_errors by @ericsciple in #3806
- Update dotnet sdk to latest version @8.0.408 by @github-actions in #3808
- Bump hook to 0.7.0 by @nikola-jokic in #3813
- Allow enable auth migration by default. by @TingluoHuang in #3804
- Do not retry /renewjob on 404 by @ericsciple in #3828
- Bump Microsoft.NET.Test.Sdk from 17.12.0 to 17.13.0 in /src by @dependabot in #3719
- Add copilot-instructions.md by @pje in #3810
- Bump actions/upload-release-asset from 1.0.1 to 1.0.2 by @dependabot in #3553
- Ignore exception during auth migration. by @TingluoHuang in #3835
- feat: default fromPath for problem matchers by @dsanders11 in #3802
- Bump Azure.Storage.Blobs from 12.23.0 to 12.24.0 in /src by @dependabot in #3837
- Bump nodejs version. by @TingluoHuang in #3840
- Feature-flagged support for
JobContext.CheckRunID
by @pje in #3811 - Bump System.ServiceProcess.ServiceController from 8.0.0 to 8.0.1 in /src by @dependabot in #3844
- Bump xunit.runner.visualstudio from 2.5.8 to 2.8.2 in /src by @dependabot in #3845
- Make sure the token's claims are match as expected. by @TingluoHuang in #3846
- Prefer _migrated config on startup by @lokesh755 in #3853
- Update docker and buildx by @TingluoHuang in #3854
New Contributors
- @dsanders11 made their first contribution in #3802
Full Changelog: v2.323.0...v2.324.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell
:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-win-x64-2.324.0.zip -OutFile actions-runner-win-x64-2.324.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.324.0.zip", "$PWD")
Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell
:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-win-arm64-2.324.0.zip -OutFile actions-runner-win-arm64-2.324.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.324.0.zip", "$PWD")
OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-osx-x64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.324.0.tar.gz
OSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-osx-arm64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.324.0.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-linux-x64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.324.0.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-linux-arm64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.324.0.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-linux-arm-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.324.0.tar.gz
Using your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.324.0.zip 78b70ddc65e0c2f1940195859e453bdfaa098fe3475cf89bc9378614d2adc197
- actions-runner-win-arm64-2.324.0.zip 43479570319c7091132d362e1d518a38bba1e37494b14b47d3b85c176f869f82
- actions-runner-osx-x64-2.324.0.tar.gz fbf97cc843c480f0104e2a3d2b1bda86ca467c88da666ac76e432caa2748c683
- actions-runner-osx-arm64-2.324.0.tar.gz ea3e592d93afd0d71c5e355c15f98ee7cb21cf5ea0ac39f55bf21c661f1915ef
- actions-runner-linux-x64-2.324.0.tar.gz e8e24a3477da17040b4d6fa6d34c6ecb9a2879e800aa532518ec21e49e21d7b4
- actions-runner-linux-arm64-2.324.0.tar.gz b5a5cf1138064afd0f0fb1a4a493adaa9bff5485ace3575e99547f004dbb20fa
- actions-runner-linux-arm-2.324.0.tar.gz 947784560c2dfc750a83dd7f94861244b9deb0e97cb3f3e68f79507bd0ce8e5c
v2.323.0
What's Changed
- Bump docker/login-action from 2 to 3 by @dependabot in #3673
- Bump actions/stale from 8 to 9 by @dependabot in #3554
- Bump docker/build-push-action from 3 to 6 by @dependabot in #3674
- update node version from 20.18.0 -> 20.18.2 by @aiqiaoy in #3682
- Pass BillingOwnerId through Acquire/Complete calls by @luketomlinson in #3689
- Do not retry CompleteJobAsync for known non-retryable errors by @ericsciple in #3696
- Update dotnet sdk to latest version @8.0.406 by @github-actions in #3712
- Update Dockerfile with new docker and buildx versions by @thboop in #3680
- chore: remove redundant words by @finaltrip in #3705
- fix: actions feedback link is incorrect by @Yaminyam in #3165
- Bump actions/github-script from 0.3.0 to 7.0.1 by @dependabot in #3557
- Docker container provenance by @paveliak in #3736
- Add request-id to http eventsource trace. by @TingluoHuang in #3740
- Update Bocker and Buildx version to mitigate images scanners alerts by @Blizter in #3750
- Fix typo, add invariant culture to timestamp for workflow log reporting by @GhadimiR in #3749
- Create vssconnection to actions service when URL provided. by @TingluoHuang in #3751
- Housekeeping: Update npm packages and node version by @thboop in #3752
- Improve the out-of-date warning message. by @tecimovic in #3595
- Update dotnet sdk to latest version @8.0.407 by @github-actions in #3753
- Exit hosted runner cleanly during deprovisioning. by @TingluoHuang in #3755
- Send annotation title to run-service. by @TingluoHuang in #3757
- Allow server enforce runner settings. by @TingluoHuang in #3758
- Support refresh runner configs with pipelines service. by @TingluoHuang in #3706
New Contributors
- @finaltrip made their first contribution in #3705
- @Yaminyam made their first contribution in #3165
- @Blizter made their first contribution in #3750
- @GhadimiR made their first contribution in #3749
- @tecimovic made their first contribution in #3595
Full Changelog: 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.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.323.0/actions-runner-osx-arm64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.323.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.323.0/actions-runner-linux-x64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.323.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.323.0/actions-runner-linux-arm64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.323.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.323.0/actions-runner-linux-arm-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.323.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.323.0.zip e8ca92e3b1b907cdcc0c94640f4c5b23f377743993a4a5c859cb74f3e6eb33ef
- actions-runner-win-arm64-2.323.0.zip b48a9a0bb5539b1827af9516675cad1b8db453bd9fcd1427e02502f7c84d0e97
- actions-runner-osx-x64-2.323.0.tar.gz 5dd3f423e8f387a47ac53a5e355e0fe105f0a9314d7823dea098dca70e1bd2c9
- actions-runner-osx-arm64-2.323.0.tar.gz 845f98d74a3eab5d0bb80517b08bfd1fb162eec5d8f302e175addc4153b35f29
- actions-runner-linux-x64-2.323.0.tar.gz 0dbc9bf5a58620fc52cb6cc0448abcca964a8d74b5f39773b7afcad9ab691e19
- actions-runner-linux-arm64-2.323.0.tar.gz 9cb778fffd4c6d8bd74bc4110df7cb8c0122eb62fda30b389318b265d3ade538
- actions-runner-linux-arm-2.323.0.tar.gz e3bbb53d4d97859fc1c5cfd9da2a5501686041cbda7c0bb94185e2cde0e9ff1b
v2.320.1
What's Changed
- Backport: Expose ENV for cache service v2. #3548
Full Changelog: v2.320.0...v2.320.1
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell
:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.320.1/actions-runner-win-x64-2.320.1.zip -OutFile actions-runner-win-x64-2.320.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.320.1.zip", "$PWD")
[Pre-release] Windows arm64
Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.
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.320.1/actions-runner-win-arm64-2.320.1.zip -OutFile actions-runner-win-arm64-2.320.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.320.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.320.1/actions-runner-osx-x64-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.320.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.320.1/actions-runner-osx-arm64-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.320.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.320.1/actions-runner-linux-x64-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.320.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.320.1/actions-runner-linux-arm64-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.320.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.320.1/actions-runner-linux-arm-2.320.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.320.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.320.1.zip 2255911ff39327c8d41d61479fcba0f15ff2fa9621e0f27a107183842c482399
- actions-runner-win-arm64-2.320.1.zip f650209088ce95ec0c3dc101fcbb40bf91bc953d6148a3dada10ca41828cb2fd
- actions-runner-osx-x64-2.320.1.tar.gz 482551b048500f08e461c7ca4ec52d817c3e830451d12c2fd1d6a3414aca3073
- actions-runner-osx-arm64-2.320.1.tar.gz 68bf9b8d5740ee6395e2acf46ad11a19b761545be19e5b37a47b5eb76d116c10
- actions-runner-linux-x64-2.320.1.tar.gz e22b55a9a7b67e7056f6df063bdc026e02fcb7a4b34419978b29861b1b70e697
- actions-runner-linux-arm64-2.320.1.tar.gz a2f224e560bdeaf3fddac088ebaead7f46e8ed4db9aa92358b52e00ea7604ee3
- actions-runner-linux-arm-2.320.1.tar.gz 3e281dd9eaf505b6fc38830a8b6948ea821c687218e746e56c7a28ee4a4ff992
v2.322.0
What's Changed
- Fix name of generated of artifact builds from GitHub workflow for arm artifacts by @satmandu in #3568
- Ignore error when fail to report worker crash. by @TingluoHuang in #3588
- Fix null ref in 'OnEventWritten()' by @TingluoHuang in #3593
- Send stepNumber for annotation to run-service by @TingluoHuang in #3614
- Enable nuget audit. by @TingluoHuang in #3615
- Update dotnet install script. by @TingluoHuang in #3659
- Print immutable action package details in set up job logs by @heavymachinery in #3645
- Update dotnet sdk to latest version @8.0.405 by @github-actions in #3666
- Upgrade
buildx
from0.18.0
to0.19.3
(critical CVE) by @MPV in #3647 - Upgrade
docker
from27.3.1
to27.4.1
by @MPV in #3648 - Bump Microsoft.NET.Test.Sdk from 17.8.0 to 17.12.0 in /src by @dependabot in #3584
- Bump docker/setup-buildx-action from 2 to 3 by @dependabot in #3564
- Bump github/codeql-action from 2 to 3 by @dependabot in #3555
- Bump Moq from 4.20.70 to 4.20.72 in /src by @dependabot in #3672
New Contributors
Full Changelog: 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.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.322.0/actions-runner-osx-arm64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.322.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.322.0/actions-runner-linux-x64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.322.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.322.0/actions-runner-linux-arm64-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.322.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.322.0/actions-runner-linux-arm-2.322.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.322.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.322.0.zip ace5de018c88492ca80a2323af53ff3f43d2c82741853efb302928f250516015
- actions-runner-win-arm64-2.322.0.zip 74b67df4e94e3cd7d79b9320d421b0a62c66b77a019cf2471aba793dac0139fb
- actions-runner-osx-x64-2.322.0.tar.gz aa0fc262363912167dcdbc746ffcdf7b8996bc587f51cf1bab38ad86cf70b6ea
- actions-runner-osx-arm64-2.322.0.tar.gz 67d3b4dd6f1eec8ec43dda12c189cff68ec3ba1dfa054791cb446ddcfb39d2aa
- actions-runner-linux-x64-2.322.0.tar.gz b13b784808359f31bc79b08a191f5f83757852957dd8fe3dbfcc38202ccf5768
- actions-runner-linux-arm64-2.322.0.tar.gz a96b0cec7b0237ca5e4210982368c6f7d8c2ab1e5f6b2604c1ccede9cedcb143
- actions-runner-linux-arm-2.322.0.tar.gz 583fc5f933eb2f0f9f388ef304085629181cef54e63fe3445eed92dba4a87c46
v2.321.0
What's Changed
- Fix release workflow to use distinct artifact names by @ericsciple in #3485
- Update dotnet sdk to latest version @6.0.425 by @github-actions in #3433
- add ref and type to job completion in run service by @yaananth in #3492
- Remove Broker Migration Message logging by @luketomlinson in #3493
- Bump dotnet SDK to dotnet 8. by @TingluoHuang in #3500
- Remove dotnet8 compatibility test. by @TingluoHuang in #3502
- Remove node16 from the runner. by @TingluoHuang in #3503
- send action name for run service by @yaananth in #3520
- Handle runner not found by @ericsciple in #3536
- Publish job telemetry to run-service. by @TingluoHuang in #3545
- Fetch repo-level runner groups from API in v2 flow by @lucavallin in #3546
- Allow runner to check service connection in background. by @TingluoHuang in #3542
- Expose ENV for cache service v2. by @TingluoHuang in #3548
- Update runner docker image. by @TingluoHuang in #3511
- Bump Azure.Storage.Blobs from 12.19.1 to 12.23.0 in /src by @dependabot in #3549
- fix dotnet-upgrade.yml to print right version by @TingluoHuang in #3550
- Update dotnet sdk to latest version @8.0.404 by @github-actions in #3552
- Configure dependabot to check github-actions updates by @Goooler in #3333
- Bump actions/checkout from 3 to 4 by @dependabot in #3556
New Contributors
- @lucavallin made their first contribution in #3546
- @Goooler made their first contribution in #3333
Full Changelog: 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.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.321.0/actions-runner-osx-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.321.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.321.0/actions-runner-linux-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.321.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.321.0/actions-runner-linux-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.321.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.321.0/actions-runner-linux-arm-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.321.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.321.0.zip 88d754da46f4053aec9007d172020c1b75ab2e2049c08aef759b643316580bbc
- actions-runner-win-arm64-2.321.0.zip 22df5a32a65a55e43dab38a200d4f72be0f9f5ce1839f5ad34e689a0d3ff0fb7
- actions-runner-osx-x64-2.321.0.tar.gz b2c91416b3e4d579ae69fc2c381fc50dbda13f1b3fcc283187e2c75d1b173072
- actions-runner-osx-arm64-2.321.0.tar.gz fbee07e42a134645d4f04f8146b0a3d0b3c948f0d6b2b9fa61f4318c1192ff79
- actions-runner-linux-x64-2.321.0.tar.gz ba46ba7ce3a4d7236b16fbe44419fb453bc08f866b24f04d549ec89f1722a29e
- actions-runner-linux-arm64-2.321.0.tar.gz 62cc5735d63057d8d07441507c3d6974e90c1854bdb33e9c8b26c0da086336e1
- actions-runner-linux-arm-2.321.0.tar.gz 2b96a4991ebf2b2076908a527a1a13db590217f9375267b5dd95f0300dde432b
v2.320.0
What's Changed
- Adding Snapshot additional mapping tokens #3468
- Create launch httpclient using the right handler and setting #3476
- Fix missing default user-agent for jitconfig runner #3473
- Cleanup back-compat code for interpreting Run Service status codes #3456
- Add runner or worker to the useragent #3457
- Handle Error Body in Responses from Broker #3454
- Fix issues for composite actions (Run Service flow) #3446
- Trace GitHub RequestId to log #3442
- Add
jq
,git
,unzip
andcurl
to default packages installed #3056 - Add pid to user-agent and session owner #3432
Full Changelog: v2.319.1...v2.320.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.320.0/actions-runner-win-x64-2.320.0.zip -OutFile actions-runner-win-x64-2.320.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.320.0.zip", "$PWD")
[Pre-release] Windows arm64
Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.
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.320.0/actions-runner-win-arm64-2.320.0.zip -OutFile actions-runner-win-arm64-2.320.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.320.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.320.0/actions-runner-osx-x64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.320.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.320.0/actions-runner-osx-arm64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.320.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.320.0/actions-runner-linux-x64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.320.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.320.0/actions-runner-linux-arm64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.320.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.320.0/actions-runner-linux-arm-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.320.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.320.0.zip 9eb133e8cb25e8319f1cbef3578c9ec5428a7af7c6ec0202ba6f9a9fddf663c0
- actions-runner-win-arm64-2.320.0.zip b92e6ce0facde2e7cedd502bb1b2ff99cebdb9c99caf77c65192986b8411e267
- actions-runner-osx-x64-2.320.0.tar.gz 11e610adc1c3721a806d2a439d03d143cceeda7a63e794bfe75b45da55e308df
- actions-runner-osx-arm64-2.320.0.tar.gz 14e2600c07ad76a1c9f6d9e498edf14f1c63f7f7f8d55de0653e450f64caa854
- actions-runner-linux-x64-2.320.0.tar.gz 93ac1b7ce743ee85b5d386f5c1787385ef07b3d7c728ff66ce0d3813d5f46900
- actions-runner-linux-arm64-2.320.0.tar.gz bec1832fe6d2ed75acf4b7d8f2ce1169239a913b84ab1ded028076c9fa5091b8
- actions-runner-linux-arm-2.320.0.tar.gz b2212dbceeea27daf3c90441352851b2d1afcb736a76c2435a715c21daaa6f18
v2.319.1
What's Changed
- .NET 8 compat test adjustments: 1) do not trim SDK, 2) support pattern to match output, 3) modify output truncation length #3427
Full Changelog: v2.319.0...v2.319.1
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell
:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.319.1/actions-runner-win-x64-2.319.1.zip -OutFile actions-runner-win-x64-2.319.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.319.1.zip", "$PWD")
[Pre-release] Windows arm64
Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.
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.319.1/actions-runner-win-arm64-2.319.1.zip -OutFile actions-runner-win-arm64-2.319.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.319.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.319.1/actions-runner-osx-x64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.319.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.319.1/actions-runner-osx-arm64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.319.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.319.1/actions-runner-linux-x64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.319.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.319.1/actions-runner-linux-arm64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.319.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.319.1/actions-runner-linux-arm-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.319.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.319.1.zip 1c78c51d20b817fb639e0b0ab564cf0469d083ad543ca3d0d7a2cdad5723f3a7
- actions-runner-win-arm64-2.319.1.zip 3d25e7ddbad0104a5db94cf13bd1ebd06c4e991999dd84fac007b31851421e90
- actions-runner-osx-x64-2.319.1.tar.gz e0987bc1c2b71e732a0e7963a8a6de64fe3be2a282122c23c52b83d7cebfafdb
- actions-runner-osx-arm64-2.319.1.tar.gz af6a2fba35cc63415693ebfb969b4d7a9d59158e1f3587daf498d0df534bf56f
- actions-runner-linux-x64-2.319.1.tar.gz 3f6efb7488a183e291fc2c62876e14c9ee732864173734facc85a1bfb1744464
- actions-runner-linux-arm64-2.319.1.tar.gz 03d993c65e0c4daa5e3bf5a5a35ba356f363bdb5ceb6b5808fd52fdb813dd8e8
- actions-runner-linux-arm-2.319.1.tar.gz 513065cd485ea3b8b445ae4e7aae95960cc094527ecf954310e819c81f7c21e2
v2.319.0
What's Changed
- .NET 8 OS compatibility test #3422
- Ignore ssl cert on websocket client #3423
- Revert "Bump runner to dotnet 8" #3412
Full Changelog: v2.318.0...v2.319.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.319.0/actions-runner-win-x64-2.319.0.zip -OutFile actions-runner-win-x64-2.319.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.319.0.zip", "$PWD")
[Pre-release] Windows arm64
Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.
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.319.0/actions-runner-win-arm64-2.319.0.zip -OutFile actions-runner-win-arm64-2.319.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.319.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.319.0/actions-runner-osx-x64-2.319.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.319.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.319.0/actions-runner-osx-arm64-2.319.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.319.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.319.0/actions-runner-linux-x64-2.319.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.319.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.319.0/actions-runner-linux-arm64-2.319.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.319.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.319.0/actions-runner-linux-arm-2.319.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.319.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.319.0.zip 932d8e01a95ee687df876e6db8cf0466393821cd079fc0f463501a02f23fed5e
- actions-runner-win-arm64-2.319.0.zip 50bb8a472d43d516934fb4c28dd2f806b186998121b372bfa0986970e325f294
- actions-runner-osx-x64-2.319.0.tar.gz 551bb83c896ebc3cd7608db378e667085d8b499f5e32ef44dc68c19d25ede8ca
- actions-runner-osx-arm64-2.319.0.tar.gz 5910ce70e5736df22e987bde6b047170948b2bdf3d0581277b177d3ca3f3c9d5
- actions-runner-linux-x64-2.319.0.tar.gz 52b8f9c5abb1a47cc506185a1a20ecea19daf0d94bbf4ddde7e617e7be109b14
- actions-runner-linux-arm64-2.319.0.tar.gz 524e75dc384ba8289fcea4914eb210f10c8c4e143213cef7d28f0c84dd2d017c
- actions-runner-linux-arm-2.319.0.tar.gz 078dcda7233fbb428a07cb16a50fea315d333040e40d3917171d5a2d51d168d1
v2.318.0
What's Changed
- Update Docker to v27.1.1 by @TingluoHuang in #3401
- Upgrade dotnet sdk to v8.0.303 in #3388
- Rephrase node20 warning by @rentziass in #3376
- Bump hook version to 0.6.1 by @nikola-jokic in #3350
- Backoff to avoid excessive retries to Run Service in a duration by @ericsciple in #3354
- Bump System.Security.Cryptography.Pkcs from 5.0.0 to 8.0.0 in /src in #3347
- Upgrade dotnet sdk to v8.0.302 in #3346
- Bump runner to dotnet 8 by @TingluoHuang in #3345
- Pass runner version as environment variable in workflow by @joshmgross in #3318
- Make sure we mask secrets when reporting telemetry by @TingluoHuang in #3315
- Bump docker version and docker buildx version by @int128 in #3277
Full Changelog: v2.317.0...v2.318.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.318.0/actions-runner-win-x64-2.318.0.zip -OutFile actions-runner-win-x64-2.318.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.318.0.zip", "$PWD")
[Pre-release] Windows arm64
Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.
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.318.0/actions-runner-win-arm64-2.318.0.zip -OutFile actions-runner-win-arm64-2.318.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.318.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.318.0/actions-runner-osx-x64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.318.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.318.0/actions-runner-osx-arm64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.318.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.318.0/actions-runner-linux-x64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.318.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.318.0/actions-runner-linux-arm64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.318.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.318.0/actions-runner-linux-arm-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.318.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.318.0.zip 35e41033097bda057333718fd0a923650c505ed214437f89328b6c07dc25b45d
- actions-runner-win-arm64-2.318.0.zip 56263cd9002c4b38d649cd6772cc5873e6df1c537c58af58b72cd7a5873b4ae3
- actions-runner-osx-x64-2.318.0.tar.gz d5d5ae1138595063958ceb6141bb30fdfb63afe6a9859dee29f0fa56474bd386
- actions-runner-osx-arm64-2.318.0.tar.gz 52c8b7200587e0d461e61657a20db2b798ef3c88e41ff1ee435b770cd648b41e
- actions-runner-linux-x64-2.318.0.tar.gz 28ed88e4cedf0fc93201a901e392a70463dbd0213f2ce9d57a4ab495027f3e2f
- actions-runner-linux-arm64-2.318.0.tar.gz c4d03f1fdfc74e4e29cc403917be2bb24a714740bd250401fba5a4670e2c6070
- actions-runner-linux-arm-2.318.0.tar.gz 34e95530fc31c3678ead5a423414103fdf7513ed245268e6e741c94c55e653a1