Releases: ubicloud/runner
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.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 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.CheckRunID
by @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.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 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.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 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
buildx
from0.18.0
to0.19.3
(critical CVE) by @MPV in actions#3647 - Upgrade
docker
from27.3.1
to27.4.1
by @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.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 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.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 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.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 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
v2.320.0
What's Changed
- Adding Snapshot additional mapping tokens actions#3468
- Create launch httpclient using the right handler and setting actions#3476
- Fix missing default user-agent for jitconfig runner actions#3473
- Cleanup back-compat code for interpreting Run Service status codes actions#3456
- Add runner or worker to the useragent actions#3457
- Handle Error Body in Responses from Broker actions#3454
- Fix issues for composite actions (Run Service flow) actions#3446
- Trace GitHub RequestId to log actions#3442
- Add
jq
,git
,unzip
andcurl
to default packages installed actions#3056 - Add pid to user-agent and session owner actions#3432
Full Changelog: actions/runner@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 8640461e9d1578de85af534620dcb782c61e4728044f2136b8c00a1df75b478b
- actions-runner-win-arm64-2.320.0.zip 45bb8bbec468f67da7eed7881a289e722ee4a4a81f70ef175fa72c12b75d7736
- actions-runner-osx-x64-2.320.0.tar.gz cc559c5b18d27147bb5c8501b54b7e0d67206cd0834784a94f09dd035c65ee5e
- actions-runner-osx-arm64-2.320.0.tar.gz c4dd70c79cf691d21b9a2a2e1d93919413143539915d9a737cf1be7e6fc89b48
- actions-runner-linux-x64-2.320.0.tar.gz 2fc7db2af185fd44083a7a6c0be9503ed2688b2e66c6e893e5efd62f9d8d9777
- actions-runner-linux-arm64-2.320.0.tar.gz 770e17ce9f0caadb864ed2901e0668b921e20821e15ea9bb97b727a0eb6a99f2
- actions-runner-linux-arm-2.320.0.tar.gz 64706914ac4c0b783c671aa909957d52d4eda1d51bd7b44431ed4a411ae2f973