Releases: dfinity/runner
v2.327.1
What's Changed
- Try add orchestrationid into user-agent using token claim. by @TingluoHuang in actions#3945
- Fix null reference exception in user agent handling by @salmanmkc in actions#3946
- Runner Support for executing Node24 Actions by @salmanmkc in actions#3940
- Update dotnet sdk to latest version @8.0.412 by @github-actions[bot] in actions#3941
New Contributors
- @salmanmkc made their first contribution in actions#3946
Full Changelog: actions/runner@v2.326.0...v2.327.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-win-x64-2.327.1.zip -OutFile actions-runner-win-x64-2.327.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.327.1.zip", "$PWD")Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-win-arm64-2.327.1.zip -OutFile actions-runner-win-arm64-2.327.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.327.1.zip", "$PWD")OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-osx-x64-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.327.1.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-osx-arm64-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.327.1.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-linux-x64-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.327.1.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-linux-arm64-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.327.1.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-linux-arm-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.327.1.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.327.1.zip 80912c6fc29521108c8961921ed4e47c403aea9a8969b7428feb076d286352a6
- actions-runner-win-arm64-2.327.1.zip 76566e95994443a3a7c29909abbe016f7f6866e4a889acfcb04c2302870829bc
- actions-runner-osx-x64-2.327.1.tar.gz 06ab5bcf6116799b620d61fa0e2d910a04b0c573cf8716e085ecaf48c961522d
- actions-runner-osx-arm64-2.327.1.tar.gz 8a9030971e64b606d8ecd4a629003772b2249f7f469cf57dfcab814a1192fa5c
- actions-runner-linux-x64-2.327.1.tar.gz e7c1d7cd9dac9c56ce31ac8c37616cc9fdcba20e3e7352ba6fca8199cf9473f3
- actions-runner-linux-arm64-2.327.1.tar.gz f7dcb4597b6aabde80af466216fbeb698b6b87a192066a38ba7b479d89888607
- actions-runner-linux-arm-2.327.1.tar.gz c941dc2b9df39cf16ca95bf66bed29b49fe58ad2375c3cb2e737d024e991876d
v2.325.0
What's Changed
- Create schedule workflow to upgrade docker and buildx version. by @TingluoHuang in actions#3859
- Update dotnet sdk to latest version @8.0.409 by @github-actions in actions#3860
- Allow runner to use authv2 during config. by @TingluoHuang in actions#3866
- show helpful error message when resolving actions directly with launch by @aiqiaoy in actions#3874
- Update dotnet sdk to latest version @8.0.410 by @github-actions in actions#3871
- Update Docker to v28.2.1 and Buildx to v0.24.0 by @github-actions in actions#3881
- Allow NO_SSL_VERIFY in RawHttpMessageHandler. by @TingluoHuang in actions#3883
Full Changelog: actions/runner@v2.324.0...v2.325.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-win-x64-2.325.0.zip -OutFile actions-runner-win-x64-2.325.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.325.0.zip", "$PWD")Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-win-arm64-2.325.0.zip -OutFile actions-runner-win-arm64-2.325.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.325.0.zip", "$PWD")OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-osx-x64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.325.0.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-osx-arm64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.325.0.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-x64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.325.0.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-arm64-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.325.0.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-linux-arm-2.325.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.325.0.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.325.0.zip 3d7ba455c814bc7d05afc2ec52f54f81e27283eb283b7f0b0df92c82719e5615
- actions-runner-win-arm64-2.325.0.zip 77f8de6dec46fe76f130d311c8b3ec38ef7ec0f4a952b7f697e5e844337b0a2b
- actions-runner-osx-x64-2.325.0.tar.gz 0673247a5fe7b6b078d91ec86d7f349d5ab66f0e7e144e4b88ffba2943227d45
- actions-runner-osx-arm64-2.325.0.tar.gz 17f4bc69866eaa90a0f3cad63473b4c6940fdea9dcb460d3ebb114bdd196e129
- actions-runner-linux-x64-2.325.0.tar.gz a9b78303250d007e52214de4321bf90087d571419733bc18d83dad95f0a594e6
- actions-runner-linux-arm64-2.325.0.tar.gz 680bf746d372592575bb765ecce61381084e25f8b4a34ba773eb3c3fd405ae37
- actions-runner-linux-arm-2.325.0.tar.gz 502f7c20b43ba35d10b4d85f7469407b6bdbd9be67b6311b227e16cbb4b8b56f
v2.324.0
What's Changed
- Increase error body max length before truncation by @ericsciple in actions#3762
- Fix release.yml break by upgrading actions/github-script by @TingluoHuang in actions#3772
- Small runner code cleanup. by @TingluoHuang in actions#3773
- Enable hostcontext to track auth migration. by @TingluoHuang in actions#3776
- Add option in OAuthCred to load authUrlV2. by @TingluoHuang in actions#3777
- Remove create session with broker in MessageListener. by @TingluoHuang in actions#3782
- Enable auth migration based on config refresh. by @TingluoHuang in actions#3786
- Set JWT.alg to PS256 with PssPadding. by @TingluoHuang in actions#3789
- Enable FIPS by default. by @TingluoHuang in actions#3793
- Support auth migration using authUrlV2 in Runner/MessageListener. by @TingluoHuang in actions#3787
- Cleanup feature flag actions_skip_retry_complete_job_upon_known_errors by @ericsciple in actions#3806
- Update dotnet sdk to latest version @8.0.408 by @github-actions in actions#3808
- Bump hook to 0.7.0 by @nikola-jokic in actions#3813
- Allow enable auth migration by default. by @TingluoHuang in actions#3804
- Do not retry /renewjob on 404 by @ericsciple in actions#3828
- Bump Microsoft.NET.Test.Sdk from 17.12.0 to 17.13.0 in /src by @dependabot in actions#3719
- Add copilot-instructions.md by @pje in actions#3810
- Bump actions/upload-release-asset from 1.0.1 to 1.0.2 by @dependabot in actions#3553
- Ignore exception during auth migration. by @TingluoHuang in actions#3835
- feat: default fromPath for problem matchers by @dsanders11 in actions#3802
- Bump Azure.Storage.Blobs from 12.23.0 to 12.24.0 in /src by @dependabot in actions#3837
- Bump nodejs version. by @TingluoHuang in actions#3840
- Feature-flagged support for
JobContext.CheckRunIDby @pje in actions#3811 - Bump System.ServiceProcess.ServiceController from 8.0.0 to 8.0.1 in /src by @dependabot in actions#3844
- Bump xunit.runner.visualstudio from 2.5.8 to 2.8.2 in /src by @dependabot in actions#3845
- Make sure the token's claims are match as expected. by @TingluoHuang in actions#3846
- Prefer _migrated config on startup by @lokesh755 in actions#3853
- Update docker and buildx by @TingluoHuang in actions#3854
New Contributors
- @dsanders11 made their first contribution in actions#3802
Full Changelog: actions/runner@v2.323.0...v2.324.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-win-x64-2.324.0.zip -OutFile actions-runner-win-x64-2.324.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.324.0.zip", "$PWD")Windows arm64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-win-arm64-2.324.0.zip -OutFile actions-runner-win-arm64-2.324.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.324.0.zip", "$PWD")OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-osx-x64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.324.0.tar.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-osx-arm64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.324.0.tar.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-linux-x64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.324.0.tar.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-linux-arm64-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.324.0.tar.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-linux-arm-2.324.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.324.0.tar.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.324.0.zip a19e40971b3e46c7663749b98d25bd296cf17543ab7bc2069c95334b95e451f0
- actions-runner-win-arm64-2.324.0.zip b95626c65d9773edbea1f762b535aec342f7638146f100c31bf494395a848ad3
- actions-runner-osx-x64-2.324.0.tar.gz 683a2471d3890f09c461b36a5e69f02ffff78dd68e016d09c81a398f8d647ca5
- actions-runner-osx-arm64-2.324.0.tar.gz 7bf1bdedb3f4ce6e56eb6930263c3f32a08bf0f172026c4aafae35caa5f92ca6
- actions-runner-linux-x64-2.324.0.tar.gz 5aa49bcb663d87aa408f02779efbdd7cd299bd273675140e6457a7316e1dd682
- actions-runner-linux-arm64-2.324.0.tar.gz da07524eced67467bd71b8108a8f7e81349b0cef9a2c8fd7ade6803282f6b8c9
- actions-runner-linux-arm-2.324.0.tar.gz f0ad210d9f67f3f248139eede2691e6af9057ca5a3e142ca411fb8ff5b30664e
v2.323.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.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 d5bf2259044e361e287f690d5cf3147c447342ba2531e50a7f2bb7611d428a7b
- actions-runner-win-arm64-2.323.0.zip 538606d5d6245d4b42994902bfda37266b3147b088ad19e88e2d15d89d34ee06
- actions-runner-osx-x64-2.323.0.tar.gz 729ded129982843d22d70691087c43734f0365eeae93317a0a489454f0d08abb
- actions-runner-osx-arm64-2.323.0.tar.gz 874a155dedd21f5982a4321099e1775d7d9be54b4ff40ac232f734147b81ecc1
- actions-runner-linux-x64-2.323.0.tar.gz dee1da40327b4d22fd91cdda0932e47686e7754d90c6e605ae596c21edfdf86e
- actions-runner-linux-arm64-2.323.0.tar.gz d92f1c806efdf7d59f8f9ece0865e849f35a3bdfc7a67d703492e3eb3c62c998
- actions-runner-linux-arm-2.323.0.tar.gz 2475c4d098e8c548e92db98453869e4a3ca697ac7e7f6bf7649fff6b681a8928
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 df56873973144d40bd5100d1cb2e8906f01c06a419b25f7a23e2c48daee9ea38
- actions-runner-win-arm64-2.321.0.zip 7b6998a754a16d45e53e6bd9518a29671e399306980b6253f6cf1ca059f74ba4
- actions-runner-osx-x64-2.321.0.tar.gz e5c4b10ebbaff8035c68df38980c3adcb93753a63aa6bb662d0713461f436319
- actions-runner-osx-arm64-2.321.0.tar.gz 7d4ebf4b983866364ccecdda6fed793f81c72f9c2cc8e696324374a8d2e9eb39
- actions-runner-linux-x64-2.321.0.tar.gz 246ccebb5dd2fccda9ba207d363f726a81a3990f12a15d53e4b298602c4586da
- actions-runner-linux-arm64-2.321.0.tar.gz 8f308c7f2a81e234b9dd751bf063f411ddf475e0efde060f1905c16e7f8cf45b
- actions-runner-linux-arm-2.321.0.tar.gz 0faa5ef4bceb1f0c6af3776d0353348df5f790f6992ae94e104d6fd68ad27bb2
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 d50066a740da01fc121c229ce1402686c260ef748dc6050cfc3cb730b4c770e3
- actions-runner-win-arm64-2.320.0.zip ca09740bd6b201a754f145f6037085fd8973db48527b8f1da923b7688ab5c071
- actions-runner-osx-x64-2.320.0.tar.gz 3fea618682324b4478fc865b1c98088e7d042da149a087032d18e81990920a4e
- actions-runner-osx-arm64-2.320.0.tar.gz 82355979b2df0b14c1f983c8f2325fe59288d37834d3caaf147f9736d1a5aa0a
- actions-runner-linux-x64-2.320.0.tar.gz bb98dc39676c883d3feaf56dc9211553cd5838871efbc0977b16dd1836f501f4
- actions-runner-linux-arm64-2.320.0.tar.gz 321815e66f5669accef67b66b8f6388fe5c79d733fdac0912d85410ebfa92aa1
- actions-runner-linux-arm-2.320.0.tar.gz d14f14389734ebaa0be0668f1290a122fabe2bf894b3f5a4b46c37aa4473941a
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 b3974661d56397b61794e85e9e2dece6d5ac9b9c3289893ac3d49a109b40f98c
- actions-runner-win-arm64-2.319.1.zip 5bcd6913df4ca3ae2203baf07ec83a670313cb0d4be1e3f44359cd5bb8accb48
- actions-runner-osx-x64-2.319.1.tar.gz b3fca6adf0fbdb7faa8c23bbd3376879cd2b50803ae2ce1c2e9f830dc4a87729
- actions-runner-osx-arm64-2.319.1.tar.gz 5dc97c0bea18e23a340c8576f07cb76bca45482e03d29b58f589f96a3b3ac447
- actions-runner-linux-x64-2.319.1.tar.gz 5e210e53929d20147233b1a8bd0df8084e1df61643c6a2675a63e8caccc7708b
- actions-runner-linux-arm64-2.319.1.tar.gz ad9f994775a28e6430aaa5c69f692148e7b46847582fa2b7d3443b5232548f12
- actions-runner-linux-arm-2.319.1.tar.gz b849eb40819aab5992a30cbfbe8c0855ed10d03a21ca9fb7ecea7a9ef5663618
v2.318.0
What's Changed
- Update Docker to v27.1.1 by @TingluoHuang in actions#3401
- Upgrade dotnet sdk to v8.0.303 in actions#3388
- Rephrase node20 warning by @rentziass in actions#3376
- Bump hook version to 0.6.1 by @nikola-jokic in actions#3350
- Backoff to avoid excessive retries to Run Service in a duration by @ericsciple in actions#3354
- Bump System.Security.Cryptography.Pkcs from 5.0.0 to 8.0.0 in /src in actions#3347
- Upgrade dotnet sdk to v8.0.302 in actions#3346
- Bump runner to dotnet 8 by @TingluoHuang in actions#3345
- Pass runner version as environment variable in workflow by @joshmgross in actions#3318
- Make sure we mask secrets when reporting telemetry by @TingluoHuang in actions#3315
- Bump docker version and docker buildx version by @int128 in actions#3277
Full Changelog: actions/runner@v2.317.0...v2.318.0
Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners
Windows x64
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.318.0/actions-runner-win-x64-2.318.0.zip -OutFile actions-runner-win-x64-2.318.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.318.0.zip", "$PWD")[Pre-release] Windows arm64
Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
The following snipped needs to be run on powershell:
# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.318.0/actions-runner-win-arm64-2.318.0.zip -OutFile actions-runner-win-arm64-2.318.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.318.0.zip", "$PWD")OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.318.0/actions-runner-osx-x64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.318.0.tar.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.318.0/actions-runner-osx-arm64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.318.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.318.0/actions-runner-linux-x64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.318.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.318.0/actions-runner-linux-arm64-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.318.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.318.0/actions-runner-linux-arm-2.318.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.318.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.318.0.zip dabd322ea4988a29d3dc13834203fa3917f49073366c4c9c5fd9e298d4f2f582
- actions-runner-win-arm64-2.318.0.zip c1e772610f226db43d7130a8e27868c13dec79e59f655fc864afff679c57cea1
- actions-runner-osx-x64-2.318.0.tar.gz fdfa2a08fdbaa78794da00c6f5064fe032c1717bd53d4b390986d9bf6e96ce10
- actions-runner-osx-arm64-2.318.0.tar.gz 6412542a05aee5ee03dc31c16067162fb065b4d218bab072bba1cd42fc726662
- actions-runner-linux-x64-2.318.0.tar.gz 759fe7b5f27dad5f77ecebe96fe02d237b4990802ebd50002d836082b01b0617
- actions-runner-linux-arm64-2.318.0.tar.gz 10236db8956c7de3931a179fdd5e32f4ff1888f2440cb654873a3badc2d7e33a
- actions-runner-linux-arm-2.318.0.tar.gz 576c2f686bf78a7afb3e35faf996ce6edb655a3bf0cd61827a4207ebe303c4c2
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 4fb2e3d7e35e2ca55fd549f80b890ed553a84d5ba8eee02e84ab590c27701188
- actions-runner-win-arm64-2.317.0.zip 9022607a9e239ab13522298e091fad6c3f11645ed9cfb433022c30d19bded2d8
- actions-runner-osx-x64-2.317.0.tar.gz 96ba9568a05c542888a5592357f222e0285edeaeaa54ada9bc0408d8feb6eef9
- actions-runner-osx-arm64-2.317.0.tar.gz 4ccd7afd20a4642ba1c59bda1908b2d97432d1be9a1918c9d05d29fa0f19e327
- actions-runner-linux-x64-2.317.0.tar.gz 1f94ecfb0c4f995653636101b8f46f4005e267f087a9d9ce0a0f68c9b91210e6
- actions-runner-linux-arm64-2.317.0.tar.gz c82c01587e6136d620d07e8c7b6ac4d128230430e2099af2811fee424f7c3f85
- actions-runner-linux-arm-2.317.0.tar.gz 798bb5f746b830344b6bb1d7a79f2fded57ef829504a2c4d59766d2120e407d3
v2.317.0-hostnetwork
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-hostnetwork/actions-runner-win-x64-2.317.0-hostnetwork.zip -OutFile actions-runner-win-x64-2.317.0-hostnetwork.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.317.0-hostnetwork.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-hostnetwork/actions-runner-win-arm64-2.317.0-hostnetwork.zip -OutFile actions-runner-win-arm64-2.317.0-hostnetwork.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.317.0-hostnetwork.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-hostnetwork/actions-runner-osx-x64-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.317.0-hostnetwork.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-hostnetwork/actions-runner-osx-arm64-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0-hostnetwork.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-hostnetwork/actions-runner-linux-x64-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0-hostnetwork.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-hostnetwork/actions-runner-linux-arm64-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0-hostnetwork.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-hostnetwork/actions-runner-linux-arm-2.317.0-hostnetwork.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0-hostnetwork.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-hostnetwork.zip 3dda34d28e8e9e989677d65f8b852895081959d45de2759581533164ff996e92
- actions-runner-win-arm64-2.317.0-hostnetwork.zip d01711eae10e5fc77b0247f0404d3974460f2b00be90ed3b61c2dcaac7bb8273
- actions-runner-osx-x64-2.317.0-hostnetwork.tar.gz 6192f3a12a192fbc868a7233e13b2b31992aaeccdc7c2de7cdd47c91cb06f3e8
- actions-runner-osx-arm64-2.317.0-hostnetwork.tar.gz d136a11888f438e3ffd92963fbe15eabe0aa1ac6effaedfa195091df1e155a36
- actions-runner-linux-x64-2.317.0-hostnetwork.tar.gz 5ac2f022bc6285c829caf253f82e71b45d2cad901875d2fcf2bad6185e482e5a
- actions-runner-linux-arm64-2.317.0-hostnetwork.tar.gz 9eca721aa7da9138a72531f7eab6470f467679653ce6d829e78a82522f9ce3f0
- actions-runner-linux-arm-2.317.0-hostnetwork.tar.gz 335c42dd702f36c1190667d14e612058db118ab5e493a45826a38164ec442529