Releases: uazo/runner
v2.329.0
What's Changed
- Update safe_sleep.sh for bug when scheduler is paused for more than 1 second by @horner in actions#3157
- Acknowledge runner request by @ericsciple in actions#3996
- Update Docker to v28.3.3 and Buildx to v0.27.0 by @github-actions[bot] in actions#3999
- Update dotnet sdk to latest version @8.0.413 by @github-actions[bot] in actions#4000
- Bump actions/attest-build-provenance from 2 to 3 by @dependabot[bot] in actions#4002
- Bump @typescript-eslint/eslint-plugin from 6.7.2 to 8.35.0 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#3920
- Bump husky from 8.0.3 to 9.1.7 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#3842
- Bump @vercel/ncc from 0.38.0 to 0.38.3 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#3841
- Bump eslint-plugin-github from 4.10.0 to 4.10.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#3180
- Bump typescript from 5.2.2 to 5.9.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4007
- chore: migrate Husky config from v8 to v9 format by @salmanmkc in actions#4003
- Map RUNNER_TEMP for container action by @ericsciple in actions#4011
- Break UseV2Flow into UseV2Flow and UseRunnerAdminFlow. by @TingluoHuang in actions#4013
- Update Docker to v28.4.0 and Buildx to v0.28.0 by @github-actions[bot] in actions#4020
- Bump node.js to latest version in runner. by @TingluoHuang in actions#4022
- feat: add automated .NET dependency management workflow by @salmanmkc in actions#4028
- feat: add automated Docker BuildX dependency management workflow by @salmanmkc in actions#4029
- feat: add automated Node.js version management workflow by @salmanmkc in actions#4026
- feat: add comprehensive NPM security management workflow by @salmanmkc in actions#4027
- feat: add comprehensive dependency monitoring system by @salmanmkc in actions#4025
- Use BrokerURL when using RunnerAdmin by @luketomlinson in actions#4044
- Bump actions/github-script from 7.0.1 to 8.0.0 by @dependabot[bot] in actions#4016
- Bump actions/stale from 9 to 10 by @dependabot[bot] in actions#4015
- fix: prevent Node.js upgrade workflow from creating PRs with empty versions by @salmanmkc in actions#4055
- chore: update Node versions by @github-actions[bot] in actions#4057
- Bump actions/setup-node from 4 to 5 by @dependabot[bot] in actions#4037
- Bump Azure.Storage.Blobs from 12.25.0 to 12.25.1 by @dependabot[bot] in actions#4058
- Update Docker to v28.5.0 and Buildx to v0.29.1 by @github-actions[bot] in actions#4069
- Bump github/codeql-action from 3 to 4 by @dependabot[bot] in actions#4072
- chore: update Node versions by @github-actions[bot] in actions#4075
- Include k8s novolume (version v0.8.0) by @nikola-jokic in actions#4063
- Make sure runner-admin has both auth_url and auth_url_v2. by @TingluoHuang in actions#4066
- Report job has infra failure to run-service by @TingluoHuang in actions#4073
- Bump actions/setup-node from 5 to 6 by @dependabot[bot] in actions#4078
New Contributors
- @horner made their first contribution in actions#3157
Full Changelog: actions/runner@v2.328.0...v2.329.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-win-x64-2.329.0.zip -OutFile actions-runner-win-x64-2.329.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.329.0.zip", "$PWD")Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-win-arm64-2.329.0.zip -OutFile actions-runner-win-arm64-2.329.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.329.0.zip", "$PWD")OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-osx-x64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.329.0.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-osx-arm64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.329.0.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-linux-x64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.329.0.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-linux-arm64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.329.0.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-linux-arm-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.329.0.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.329.0.zip
- actions-runner-win-arm64-2.329.0.zip
- actions-runner-osx-x64-2.329.0.tar.gz
- actions-runner-osx-arm64-2.329.0.tar.gz
- actions-runner-linux-x64-2.329.0.tar.gz d69576b8e8f5ff0fc4b9ccfc335533ab98b380cbdaa54c14695d411c692d171e
- actions-runner-linux-arm64-2.329.0.tar.gz
- actions-runner-linux-arm-2.329.0.tar.gz
v2.328.0
What's Changed
- Update Docker to v28.3.2 and Buildx to v0.26.1 by @github-actions[bot] in actions#3953
- Fix if statement structure in update script and variable reference by @salmanmkc in actions#3956
- Add V2 flow for runner deletion by @Samirat in actions#3954
- Node 20 -> Node 24 migration feature flagging, opt-in and opt-out environment variables by @salmanmkc in actions#3948
- Update Node20 and Node24 to latest by @djs-intel in actions#3972
- Redirect supported OS doc section to current public Docs location by @corycalahan in actions#3979
- Bump Microsoft.NET.Test.Sdk from 17.13.0 to 17.14.1 by @dependabot[bot] in actions#3975
- Bump Azure.Storage.Blobs from 12.24.0 to 12.25.0 by @dependabot[bot] in actions#3974
- Bump actions/download-artifact from 4 to 5 by @dependabot[bot] in actions#3973
- Bump actions/checkout from 4 to 5 by @dependabot[bot] in actions#3982
New Contributors
- @Samirat made their first contribution in actions#3954
- @djs-intel made their first contribution in actions#3972
Full Changelog: actions/runner@v2.327.1...v2.328.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-win-x64-2.328.0.zip -OutFile actions-runner-win-x64-2.328.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.328.0.zip", "$PWD")Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-win-arm64-2.328.0.zip -OutFile actions-runner-win-arm64-2.328.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.328.0.zip", "$PWD")OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-osx-x64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.328.0.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-osx-arm64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.328.0.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-linux-x64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.328.0.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-linux-arm64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.328.0.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-linux-arm-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.328.0.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.328.0.zip
- actions-runner-win-arm64-2.328.0.zip
- actions-runner-osx-x64-2.328.0.tar.gz
- actions-runner-osx-arm64-2.328.0.tar.gz
- actions-runner-linux-x64-2.328.0.tar.gz 8bc3e503110671f93f5659f0fa46cbcd61b4349b90431e921fce6520b2afc147
- actions-runner-linux-arm64-2.328.0.tar.gz
- actions-runner-linux-arm-2.328.0.tar.gz
v2.326.0
What's Changed
- runner timestamps invariant by @GhadimiR in actions#3888
- Update README.md by @nebuk89 in actions#3898
- Update dotnet sdk to latest version @8.0.411 by @github-actions in actions#3911
- Update Docker to v28.2.2 and Buildx to v0.25.0 by @github-actions in actions#3918
- Bump windows service app to dotnet 4.7 by @TingluoHuang in actions#3926
- Upgrade node.js to latest version. by @TingluoHuang in actions#3935
New Contributors
- @nebuk89 made their first contribution in actions#3898
Full Changelog: actions/runner@v2.325.0...v2.326.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-win-x64-2.326.0.zip -OutFile actions-runner-win-x64-2.326.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.326.0.zip", "$PWD")Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-win-arm64-2.326.0.zip -OutFile actions-runner-win-arm64-2.326.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.326.0.zip", "$PWD")OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-osx-x64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.326.0.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-osx-arm64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.326.0.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-linux-x64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.326.0.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-linux-arm64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.326.0.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-linux-arm-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.326.0.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.326.0.zip
- actions-runner-win-arm64-2.326.0.zip
- actions-runner-osx-x64-2.326.0.tar.gz
- actions-runner-osx-arm64-2.326.0.tar.gz
- actions-runner-linux-x64-2.326.0.tar.gz 42b8b317694924e8a72395f4de76958afbafcd4a60d897efbed108c7c0967665
- actions-runner-linux-arm64-2.326.0.tar.gz
- actions-runner-linux-arm-2.326.0.tar.gz
v2.323.0
What's Changed
- Bump docker/login-action from 2 to 3 by @dependabot in actions#3673
- Bump actions/stale from 8 to 9 by @dependabot in actions#3554
- Bump docker/build-push-action from 3 to 6 by @dependabot in actions#3674
- update node version from 20.18.0 -> 20.18.2 by @aiqiaoy in actions#3682
- Pass BillingOwnerId through Acquire/Complete calls by @luketomlinson in actions#3689
- Do not retry CompleteJobAsync for known non-retryable errors by @ericsciple in actions#3696
- Update dotnet sdk to latest version @8.0.406 by @github-actions in actions#3712
- Update Dockerfile with new docker and buildx versions by @thboop in actions#3680
- chore: remove redundant words by @finaltrip in actions#3705
- fix: actions feedback link is incorrect by @Yaminyam in actions#3165
- Bump actions/github-script from 0.3.0 to 7.0.1 by @dependabot in actions#3557
- Docker container provenance by @paveliak in actions#3736
- Add request-id to http eventsource trace. by @TingluoHuang in actions#3740
- Update Bocker and Buildx version to mitigate images scanners alerts by @Blizter in actions#3750
- Fix typo, add invariant culture to timestamp for workflow log reporting by @GhadimiR in actions#3749
- Create vssconnection to actions service when URL provided. by @TingluoHuang in actions#3751
- Housekeeping: Update npm packages and node version by @thboop in actions#3752
- Improve the out-of-date warning message. by @tecimovic in actions#3595
- Update dotnet sdk to latest version @8.0.407 by @github-actions in actions#3753
- Exit hosted runner cleanly during deprovisioning. by @TingluoHuang in actions#3755
- Send annotation title to run-service. by @TingluoHuang in actions#3757
- Allow server enforce runner settings. by @TingluoHuang in actions#3758
- Support refresh runner configs with pipelines service. by @TingluoHuang in actions#3706
New Contributors
- @finaltrip made their first contribution in actions#3705
- @Yaminyam made their first contribution in actions#3165
- @Blizter made their first contribution in actions#3750
- @GhadimiR made their first contribution in actions#3749
- @tecimovic made their first contribution in actions#3595
Full Changelog: actions/runner@v2.322.0...v2.323.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.323.0/actions-runner-win-x64-2.323.0.zip -OutFile actions-runner-win-x64-2.323.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.323.0.zip", "$PWD")Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.323.0/actions-runner-win-arm64-2.323.0.zip -OutFile actions-runner-win-arm64-2.323.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.323.0.zip", "$PWD")OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.323.0/actions-runner-osx-x64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.323.0.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.323.0/actions-runner-osx-arm64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.323.0.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.323.0/actions-runner-linux-x64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.323.0.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.323.0/actions-runner-linux-arm64-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.323.0.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.323.0/actions-runner-linux-arm-2.323.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.323.0.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.323.0.zip
- actions-runner-win-arm64-2.323.0.zip
- actions-runner-osx-x64-2.323.0.tar.gz
- actions-runner-osx-arm64-2.323.0.tar.gz
- actions-runner-linux-x64-2.323.0.tar.gz 1e59a3f62bf90c8f209f7ceb0b25ef171231a08656284df9f509d20f39e08383
- actions-runner-linux-arm64-2.323.0.tar.gz
- actions-runner-linux-arm-2.323.0.tar.gz
v2.321.0
What's Changed
- Fix release workflow to use distinct artifact names by @ericsciple in actions#3485
- Update dotnet sdk to latest version @6.0.425 by @github-actions in actions#3433
- add ref and type to job completion in run service by @yaananth in actions#3492
- Remove Broker Migration Message logging by @luketomlinson in actions#3493
- Bump dotnet SDK to dotnet 8. by @TingluoHuang in actions#3500
- Remove dotnet8 compatibility test. by @TingluoHuang in actions#3502
- Remove node16 from the runner. by @TingluoHuang in actions#3503
- send action name for run service by @yaananth in actions#3520
- Handle runner not found by @ericsciple in actions#3536
- Publish job telemetry to run-service. by @TingluoHuang in actions#3545
- Fetch repo-level runner groups from API in v2 flow by @lucavallin in actions#3546
- Allow runner to check service connection in background. by @TingluoHuang in actions#3542
- Expose ENV for cache service v2. by @TingluoHuang in actions#3548
- Update runner docker image. by @TingluoHuang in actions#3511
- Bump Azure.Storage.Blobs from 12.19.1 to 12.23.0 in /src by @dependabot in actions#3549
- fix dotnet-upgrade.yml to print right version by @TingluoHuang in actions#3550
- Update dotnet sdk to latest version @8.0.404 by @github-actions in actions#3552
- Configure dependabot to check github-actions updates by @Goooler in actions#3333
- Bump actions/checkout from 3 to 4 by @dependabot in actions#3556
New Contributors
- @lucavallin made their first contribution in actions#3546
- @Goooler made their first contribution in actions#3333
Full Changelog: actions/runner@v2.320.0...v2.321.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-win-x64-2.321.0.zip -OutFile actions-runner-win-x64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.321.0.zip", "$PWD")Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-win-arm64-2.321.0.zip -OutFile actions-runner-win-arm64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.321.0.zip", "$PWD")OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-osx-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.321.0.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-osx-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.321.0.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-linux-x64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.321.0.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-linux-arm64-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.321.0.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-linux-arm-2.321.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.321.0.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.321.0.zip
- actions-runner-win-arm64-2.321.0.zip
- actions-runner-osx-x64-2.321.0.tar.gz
- actions-runner-osx-arm64-2.321.0.tar.gz
- actions-runner-linux-x64-2.321.0.tar.gz e643018d55789f72d8df52d9b70f3ea0d7d1021dddec4cd97384972e4a872d99
- actions-runner-linux-arm64-2.321.0.tar.gz
- actions-runner-linux-arm-2.321.0.tar.gz
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,unzipandcurlto 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.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.320.0/actions-runner-osx-arm64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.320.0.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.320.0/actions-runner-linux-x64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.320.0.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.320.0/actions-runner-linux-arm64-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.320.0.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.320.0/actions-runner-linux-arm-2.320.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.320.0.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.320.0.zip
- actions-runner-win-arm64-2.320.0.zip
- actions-runner-osx-x64-2.320.0.tar.gz
- actions-runner-osx-arm64-2.320.0.tar.gz
- actions-runner-linux-x64-2.320.0.tar.gz 5c7d1bce836ef1d80a933dd9815d1dac7f1ffad035ec19b4d8064767da54cc4e
- actions-runner-linux-arm64-2.320.0.tar.gz
- actions-runner-linux-arm-2.320.0.tar.gz
v2.319.1
What's Changed
- .NET 8 OS compatibility test actions#3422
- Ignore ssl cert on websocket client actions#3423
- Revert "Bump runner to dotnet 8" actions#3412
Full Changelog: actions/runner@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.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.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.319.1/actions-runner-osx-arm64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.319.1.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.319.1/actions-runner-linux-x64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.319.1.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.319.1/actions-runner-linux-arm64-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.319.1.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.319.1/actions-runner-linux-arm-2.319.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.319.1.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.319.1.zip
- actions-runner-win-arm64-2.319.1.zip
- actions-runner-osx-x64-2.319.1.tar.gz
- actions-runner-osx-arm64-2.319.1.tar.gz
- actions-runner-linux-x64-2.319.1.tar.gz b8f198e73ede2baa0de7bfd5b9411210af8292b6b7b34db03f47018654493737
- actions-runner-linux-arm64-2.319.1.tar.gz
- actions-runner-linux-arm-2.319.1.tar.gz
v2.317.0
What's Changed
- Do not give up when uploading steps metadata by @yacaovsnc in actions#3280
- Upgrade node20 to 20.13.1 by @pje in actions#3284
- Delete all the contentHash files by @pje in actions#3285
- Make it easy to install
giton an Action Runner Image by @jww3 in actions#3273 - Install
gpg-agentduring actions/runner container image build by @jww3 in actions#3294
Full Changelog: actions/runner@v2.316.1...v2.317.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.317.0/actions-runner-win-x64-2.317.0.zip -OutFile actions-runner-win-x64-2.317.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.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.317.0/actions-runner-win-arm64-2.317.0.zip -OutFile actions-runner-win-arm64-2.317.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.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.317.0/actions-runner-osx-x64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.317.0/actions-runner-osx-arm64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.317.0/actions-runner-linux-x64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.317.0/actions-runner-linux-arm64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.317.0/actions-runner-linux-arm-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.317.0.zip 4047a13d8770891453763471a8f5412dbccd1437230c24dcb5348b9a6dde6337
- actions-runner-win-arm64-2.317.0.zip 285bf17bca6674c5c95410b6fedca4fa97aea0ad5e68b99895a659d061f34a30
- actions-runner-osx-x64-2.317.0.tar.gz 715d442f7e1160cba126340fb52e58f4b8d21ed08a41e49c1a4a4031af2d6733
- actions-runner-osx-arm64-2.317.0.tar.gz cf7a69a9effe528ab4e169935840a782a36f51dbc1da00c074ae17839460353f
- actions-runner-linux-x64-2.317.0.tar.gz 7a815bd28381fc4bdd981502f92bda9c861de62954bcc2fca531747ca3a1b83a
- actions-runner-linux-arm64-2.317.0.tar.gz 669eb327a9c6e033a51255b081815f7cad0188e752c98c045d09ef6f0ed87c3f
- actions-runner-linux-arm-2.317.0.tar.gz b432ecf3de2725bdc65c683f02550b3dc68d53fabfa6bebea9cb17e82b203078
v2.316.1
What's Changed
- Preserve dates when deserializing job message from Run Service by @ericsciple in actions#3269
Full Changelog: actions/runner@v2.316.0...v2.316.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.316.1/actions-runner-win-x64-2.316.1.zip -OutFile actions-runner-win-x64-2.316.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.316.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.316.1/actions-runner-win-arm64-2.316.1.zip -OutFile actions-runner-win-arm64-2.316.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.316.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.316.1/actions-runner-osx-x64-2.316.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.316.1.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.1/actions-runner-osx-arm64-2.316.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.316.1.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.1/actions-runner-linux-x64-2.316.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.316.1.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.1/actions-runner-linux-arm64-2.316.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.316.1.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.1/actions-runner-linux-arm-2.316.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.316.1.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.316.1.zip daeb1d54c219da951180c8028dba2c52cb31fab6086d286570d8fb7150c920a5
- actions-runner-win-arm64-2.316.1.zip 10c3515138920f92f64b614978705e66a60db3a137b049e8a093cbd7a7d97510
- actions-runner-osx-x64-2.316.1.tar.gz 42950c45b087ecd5b61b96d1bb58e845aa7a3df73ed621c1c62b9306caae2b1b
- actions-runner-osx-arm64-2.316.1.tar.gz 1e9ea986c4db09a844d1310ef015765cdceb94e4b88f767970c32ac5261be1d9
- actions-runner-linux-x64-2.316.1.tar.gz be59022a5cac971dbc2d523452da85975a8e2044fc95db7af54ab1be4298ee0d
- actions-runner-linux-arm64-2.316.1.tar.gz db86221dfd250b5cbd56fc32b316750331f478c559599e4addf6bc5f331db025
- actions-runner-linux-arm-2.316.1.tar.gz 565f73d8cd2c8ba77149fc91915cb02dc23cda02001cf8a57966a98c71b3bf4c
v2.314.1
What's Changed
- Prepare v2.313.0 Release by @luketomlinson in actions#3137
- Pass RunnerOS during job acquire. by @TingluoHuang in actions#3140
- Process
snapshottokens by @davidomid in actions#3135 - Update dotnet sdk to latest version @6.0.419 by @github-actions in actions#3158
- handle broker run service exception handling by @yaananth in actions#3163
- Add a retry logic to docker login operation by @enescakir in actions#3089
- Broker fixes for token refreshes and AccessDeniedException by @luketomlinson in actions#3161
- Remove USE_BROKER_FLOW by @luketomlinson in actions#3162
- Refresh Token for BrokerServer by @luketomlinson in actions#3167
- Better step timeout message. by @TingluoHuang in actions#3166
New Contributors
- @davidomid made their first contribution in actions#3135
- @enescakir made their first contribution in actions#3089
Full Changelog: actions/runner@v2.313.0...v2.314.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.314.1/actions-runner-win-x64-2.314.1.zip -OutFile actions-runner-win-x64-2.314.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.314.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.314.1/actions-runner-win-arm64-2.314.1.zip -OutFile actions-runner-win-arm64-2.314.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.314.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.314.1/actions-runner-osx-x64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.314.1.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-osx-arm64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.314.1.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-linux-x64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.314.1.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-linux-arm64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.314.1.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-linux-arm-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.314.1.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.314.1.zip a39e4193ec1ee264835104a844f5ec609adec135f0d7f8f5f3323489b6721e41
- actions-runner-win-arm64-2.314.1.zip cf1a3f1f8d0c0506e348f113597b49171d85a3ec2b51d74b30956e6530b49444
- actions-runner-osx-x64-2.314.1.tar.gz 616eee988b98f26136dae3550d17d1bd04f093f76463b48101944d2d525c87bb
- actions-runner-osx-arm64-2.314.1.tar.gz 581ea687d410d3f8821f9e4c715f63b11be0b45d2210e18c84647df4f0d5986e
- actions-runner-linux-x64-2.314.1.tar.gz 8744158e36879b8ae798f9ce1322f02ae2588e06150d75b5fa92793ce313cc24
- actions-runner-linux-arm64-2.314.1.tar.gz c81e1b496f1525416d6e02c1f37c9e34fe5e8fbf09ab5f26ffabd9a348332e66
- actions-runner-linux-arm-2.314.1.tar.gz 10a057d4221eedce7c92dfd532f82019760f65ab2e2f7bb5a3eaf2da384d7f6c