releases.shpreview
GitHub/Actions Runner

Actions Runner

$npx -y @buildinternet/releases show github-actions-runner
Mon
Wed
Fri
AprMayJunJulAugSepOctNovDecJanFebMarApr
Less
More
Releases4Avg1/moVersionsv2.331.0 → v2.333.1
May 30, 2024

What's Changed

Full Changelog: https://github.com/actions/runner/compare/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.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.317.0/actions-runner-osx-arm64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.317.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.317.0/actions-runner-linux-x64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.317.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.317.0/actions-runner-linux-arm64-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.317.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.317.0/actions-runner-linux-arm-2.317.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.317.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.317.0.zip <!-- BEGIN SHA win-x64 -->a74dcd1612476eaf4b11c15b3db5a43a4f459c1d3c1807f8148aeb9530d69826<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.317.0.zip <!-- BEGIN SHA win-arm64 -->450da62bdcbab0a34ebd5a14b466d630f9cdfb1985720785499f589fd3e3724c<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.317.0.tar.gz <!-- BEGIN SHA osx-x64 -->0b23ee79731522d9e1229d14d62c200e06ac9d7dddf5641966209a7700a43c14<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.317.0.tar.gz <!-- BEGIN SHA osx-arm64 -->70b765f32062de395a35676579e25ab433270d7367feb8da85dcfe42560feaba<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.317.0.tar.gz <!-- BEGIN SHA linux-x64 -->9e883d210df8c6028aff475475a457d380353f9d01877d51cc01a17b2a91161d<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.317.0.tar.gz <!-- BEGIN SHA linux-arm64 -->7e8e2095d2c30bbaa3d2ef03505622b883d9cb985add6596dbe2f234ece308f3<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.317.0.tar.gz <!-- BEGIN SHA linux-arm -->8a767b09300472bbac8e1c27c9b2a1460640206d03ca469efd4ce1d49333a5a3<!-- END SHA linux-arm -->
May 2, 2024

What's Changed

Full Changelog: https://github.com/actions/runner/compare/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.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.1/actions-runner-osx-arm64-2.316.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.316.1.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.1/actions-runner-linux-x64-2.316.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.316.1.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.1/actions-runner-linux-arm64-2.316.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.316.1.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.1/actions-runner-linux-arm-2.316.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.316.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.316.1.zip <!-- BEGIN SHA win-x64 -->e41debe4f0a83f66b28993eaf84dad944c8c82e2c9da81f56a850bc27fedd76b<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.316.1.zip <!-- BEGIN SHA win-arm64 -->3efe553a881f24eb20e79750033f69c23fcff35d78448aedf539f606cf9b869f<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.316.1.tar.gz <!-- BEGIN SHA osx-x64 -->392b9d7b6d5b4d4f3814dbf874641b894f0c72447cdf05ce93158832d2d49b6b<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.316.1.tar.gz <!-- BEGIN SHA osx-arm64 -->75129881e1b80857d235d95a390106470536f5669354cb26af8651861398fa97<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.316.1.tar.gz <!-- BEGIN SHA linux-x64 -->d62de2400eeeacd195db91e2ff011bfb646cd5d85545e81d8f78c436183e09a8<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.316.1.tar.gz <!-- BEGIN SHA linux-arm64 -->4f506deac376013a95683fd5873e9c40f27e5790895147ccaa24d7c970532249<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.316.1.tar.gz <!-- BEGIN SHA linux-arm -->534f210f1c854e24948ab9a263eb36797301946aba1760101ad96fc693873f43<!-- END SHA linux-arm -->
Apr 23, 2024

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.315.0...v2.316.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.316.0/actions-runner-win-x64-2.316.0.zip -OutFile actions-runner-win-x64-2.316.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.316.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.316.0/actions-runner-win-arm64-2.316.0.zip -OutFile actions-runner-win-arm64-2.316.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.316.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.316.0/actions-runner-osx-x64-2.316.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.316.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.0/actions-runner-osx-arm64-2.316.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.316.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.0/actions-runner-linux-x64-2.316.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.316.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.0/actions-runner-linux-arm64-2.316.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.316.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.316.0/actions-runner-linux-arm-2.316.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.316.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.316.0.zip <!-- BEGIN SHA win-x64 -->9b2d0443d11ce5c2c4391d708576dc37b1ecf62edcceec7c0c9c8e6b4472b5a1<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.316.0.zip <!-- BEGIN SHA win-arm64 -->7fb93a9b63aa76da722ead7b4a4e2404c11ed8620f9ae952a8aade27fed6eecd<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.316.0.tar.gz <!-- BEGIN SHA osx-x64 -->41c63427093d61e2cb65c470d0955163442f23817a81fbadd46276179688e5ce<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.316.0.tar.gz <!-- BEGIN SHA osx-arm64 -->8442d39e3d91b67807703ec0825cec4384837b583305ea43a495a9867b7222ca<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.316.0.tar.gz <!-- BEGIN SHA linux-x64 -->64a47e18119f0c5d70e21b6050472c2af3f582633c9678d40cb5bcb852bcc18f<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.316.0.tar.gz <!-- BEGIN SHA linux-arm64 -->03ea42d347d9ad2d875ea03c2321a0e6507c8575edaa6a75fbe8edfefe0e2a74<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.316.0.tar.gz <!-- BEGIN SHA linux-arm -->5059dda203b6b3b29bd591536b2d68231a425afc0fe022f27fd154ea6f441e23<!-- END SHA linux-arm -->
Mar 26, 2024

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.314.1...v2.315.0

Full Changelog: https://github.com/actions/runner/compare/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.315.0/actions-runner-win-x64-2.315.0.zip -OutFile actions-runner-win-x64-2.315.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.315.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.315.0/actions-runner-win-arm64-2.315.0.zip -OutFile actions-runner-win-arm64-2.315.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.315.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.315.0/actions-runner-osx-x64-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.315.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.315.0/actions-runner-osx-arm64-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.315.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.315.0/actions-runner-linux-x64-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.315.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.315.0/actions-runner-linux-arm64-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.315.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.315.0/actions-runner-linux-arm-2.315.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.315.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.315.0.zip <!-- BEGIN SHA win-x64 -->7bb01772ec66a72f733bcae6a641d3f2c6551d8b298bdd022e4b35ab59773b5a<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.315.0.zip <!-- BEGIN SHA win-arm64 -->8036385aba68c828306a20ecfe6be2fb5bfeaa6a3a4b5779d6ed6d0d604fbbba<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.315.0.tar.gz <!-- BEGIN SHA osx-x64 -->619c41a338b81f8e4613dad91e6c3c27fd0944e28731a914395879a88097f9f7<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.315.0.tar.gz <!-- BEGIN SHA osx-arm64 -->a777c481e27eedf68ef5bf88c1a853f69835542ff1916863afba74b2104c3851<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.315.0.tar.gz <!-- BEGIN SHA linux-x64 -->6362646b67613c6981db76f4d25e68e463a9af2cc8d16e31bfeabe39153606a0<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.315.0.tar.gz <!-- BEGIN SHA linux-arm64 -->d9d58b178eca5fb65d93d151f3b62bde967f8cbec7c72e9b0976e9312b7f7dda<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.315.0.tar.gz <!-- BEGIN SHA linux-arm -->d84fc4854c0c9236b35219a337a359a205cae4da44b86f948f1d1e47cbe32073<!-- END SHA linux-arm -->
Feb 27, 2024

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/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.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-osx-arm64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.314.1.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-linux-x64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.314.1.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-linux-arm64-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.314.1.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.1/actions-runner-linux-arm-2.314.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.314.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.314.1.zip <!-- BEGIN SHA win-x64 -->2e1d73c3fe00ad37c359e4f48bd09aa88ef09a46fca16d6f1e94776ccf67fc27<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.314.1.zip <!-- BEGIN SHA win-arm64 -->acc807696d1dcad6fb45f6038f884185c54c48127445c365e86d03adb164a9e2<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.314.1.tar.gz <!-- BEGIN SHA osx-x64 -->3faff4667d6d12c41da962580168415d628e3ffba9924b9ac995752087efc921<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.314.1.tar.gz <!-- BEGIN SHA osx-arm64 -->e34dab0b4707ad9a9db75f5edf47a804e293af853967a5e0e3b29c8c65f3a004<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.314.1.tar.gz <!-- BEGIN SHA linux-x64 -->6c726a118bbe02cd32e222f890e1e476567bf299353a96886ba75b423c1137b5<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.314.1.tar.gz <!-- BEGIN SHA linux-arm64 -->3d27b1340086115a118e28628a11ae727ecc6b857430c4b1b6cbe64f1f3b6789<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.314.1.tar.gz <!-- BEGIN SHA linux-arm -->a653dd46dafd47c9a3a6637a18161a1445ac6b9c3f6d6b0305be9e1ee65769af<!-- END SHA linux-arm -->
Feb 26, 2024

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/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.0/actions-runner-win-x64-2.314.0.zip -OutFile actions-runner-win-x64-2.314.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.314.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.314.0/actions-runner-win-arm64-2.314.0.zip -OutFile actions-runner-win-arm64-2.314.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.314.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.314.0/actions-runner-osx-x64-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.314.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.0/actions-runner-osx-arm64-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.314.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.0/actions-runner-linux-x64-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.314.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.0/actions-runner-linux-arm64-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.314.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.314.0/actions-runner-linux-arm-2.314.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.314.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.314.0.zip <!-- BEGIN SHA win-x64 -->70737a3df30ff9bc0b395a0331309aba59da760eb50da4ea2ff5cb768fa7f6e4<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.314.0.zip <!-- BEGIN SHA win-arm64 -->e4677bbd8fa0a4fcab0491e6865cbd5cb0597eba0690ab8f5b097a15ef8d4554<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.314.0.tar.gz <!-- BEGIN SHA osx-x64 -->5d928a482572e84f6c823a5f340e7fddec612cfad108908f4e4ea30cf58e370c<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.314.0.tar.gz <!-- BEGIN SHA osx-arm64 -->4a24368657a5a994e8c4d2c0e4b304005e6b093ebd3081dd03e5e9436ba52b9e<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.314.0.tar.gz <!-- BEGIN SHA linux-x64 -->82ac833f291f0f6b9b546f501043cab1ddb01935281403f435e78ee81a447756<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.314.0.tar.gz <!-- BEGIN SHA linux-arm64 -->cc9d28a9e7b6e9e37dea74ce55f5c314724e7f81225b8e3b0d3eaf1f27a90171<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.314.0.tar.gz <!-- BEGIN SHA linux-arm -->a90fbc2d0bcce91be2d3d112cffde0c363b33ef9a807c05f238bcd5b75fa26a7<!-- END SHA linux-arm -->
Feb 7, 2024

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.312.0...v2.313.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.313.0/actions-runner-win-x64-2.313.0.zip -OutFile actions-runner-win-x64-2.313.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.313.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.313.0/actions-runner-win-arm64-2.313.0.zip -OutFile actions-runner-win-arm64-2.313.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.313.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.313.0/actions-runner-osx-x64-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.313.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.313.0/actions-runner-osx-arm64-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.313.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.313.0/actions-runner-linux-x64-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.313.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.313.0/actions-runner-linux-arm64-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.313.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.313.0/actions-runner-linux-arm-2.313.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.313.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.313.0.zip <!-- BEGIN SHA win-x64 -->c4cb3e5d9f0ab42ddc224cfdf9fb705397a7b20fd321536da5500259225fdf8a<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.313.0.zip <!-- BEGIN SHA win-arm64 -->907796520d58527d0c0d0f7d85c1dd3a55146740aa21695cfa2e484223a6ed67<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.313.0.tar.gz <!-- BEGIN SHA osx-x64 -->65dd2618b5afa5ae1394388b215da0b763d791b480ae09f0ead956e8f8864c83<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.313.0.tar.gz <!-- BEGIN SHA osx-arm64 -->97258c75cf500f701f8549289c85d885a9497f7886c102bf4857eed8764a9143<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.313.0.tar.gz <!-- BEGIN SHA linux-x64 -->56910d6628b41f99d9a1c5fe9df54981ad5d8c9e42fc14899dcc177e222e71c4<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.313.0.tar.gz <!-- BEGIN SHA linux-arm64 -->44c306066a32c8df8b30b1258b19ed3437285baa4a1d6289f22cf38eca474603<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.313.0.tar.gz <!-- BEGIN SHA linux-arm -->8d71a3c94d68485e81d020637ee0d73a0ffd4c0b10df9ab1183d78c57a54af6a<!-- END SHA linux-arm -->
Jan 17, 2024

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.311.0...v2.312.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.312.0/actions-runner-win-x64-2.312.0.zip -OutFile actions-runner-win-x64-2.312.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.312.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.312.0/actions-runner-win-arm64-2.312.0.zip -OutFile actions-runner-win-arm64-2.312.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.312.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.312.0/actions-runner-osx-x64-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.312.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.312.0/actions-runner-osx-arm64-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.312.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.312.0/actions-runner-linux-x64-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.312.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.312.0/actions-runner-linux-arm64-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.312.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.312.0/actions-runner-linux-arm-2.312.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.312.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.312.0.zip <!-- BEGIN SHA win-x64 -->847dbba12e7d0ae8f280481cf270110892a94657b63a6a4ab2da41c2b9831191<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.312.0.zip <!-- BEGIN SHA win-arm64 -->f40f4b904a7ee5dbb7bc449a81068dbe3468a9dc1bba8bd01e41faa236671c5e<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.312.0.tar.gz <!-- BEGIN SHA osx-x64 -->648c63bb32eaa48ed50bff8a5000d9f3065359372b82739a992a00ce758bfcd2<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.312.0.tar.gz <!-- BEGIN SHA osx-arm64 -->f8cfb6bb4046b911c95038d51e21ba23df84ee81993d077c68ee1fc1bf71d42f<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.312.0.tar.gz <!-- BEGIN SHA linux-x64 -->85c1bbd104d539f666a89edef70a18db2596df374a1b51670f2af1578ecbe031<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.312.0.tar.gz <!-- BEGIN SHA linux-arm64 -->322e9ba6f0ec2350e6702457c453c5ea2517b5a6f3eac0f58a59110e6aa50fb0<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.312.0.tar.gz <!-- BEGIN SHA linux-arm -->2675be3914c2a65bbcfe3304f7f98d4b137e051005882e2eb938c6e128a59873<!-- END SHA linux-arm -->
Oct 23, 2023

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.310.2...v2.311.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.311.0/actions-runner-win-x64-2.311.0.zip -OutFile actions-runner-win-x64-2.311.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.311.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.311.0/actions-runner-win-arm64-2.311.0.zip -OutFile actions-runner-win-arm64-2.311.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.311.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.311.0/actions-runner-osx-x64-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.311.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.311.0/actions-runner-osx-arm64-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.311.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.311.0/actions-runner-linux-x64-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.311.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.311.0/actions-runner-linux-arm64-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.311.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.311.0/actions-runner-linux-arm-2.311.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.311.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.311.0.zip <!-- BEGIN SHA win-x64 -->e629628ce25c1a7032d845f12dfe3dced630ca13a878b037dde77f5683b039dd<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.311.0.zip <!-- BEGIN SHA win-arm64 -->7844fbb802116afd02efa21ee4b3a54201b121727e7671f19f32c0d760b0fd11<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.311.0.tar.gz <!-- BEGIN SHA osx-x64 -->f4d8d1dd850fd0889e0d250c82fa587b0e21934f8441143ee6772284b2ae6211<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.311.0.tar.gz <!-- BEGIN SHA osx-arm64 -->fa2f107dbce709807bae014fb3121f5dbe106211b6bbe3484c41e3b30828d6b2<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.311.0.tar.gz <!-- BEGIN SHA linux-x64 -->29fc8cf2dab4c195bb147384e7e2c94cfd4d4022c793b346a6175435265aa278<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.311.0.tar.gz <!-- BEGIN SHA linux-arm64 -->5d13b77e0aa5306b6c03e234ad1da4d9c6aa7831d26fd7e37a3656e77153611e<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.311.0.tar.gz <!-- BEGIN SHA linux-arm -->806c63e3cdb92fa32fb0cf2409fd468c9929e3bfb4db7f80b9a7655d53bbb9dd<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.311.0-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->b251dbf39d6f0dd0f50e5ad8dc07699b009c890008c116fbe4e56a26fe1506f0<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.311.0-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->90adaf90024a628487bcd4070a42e4ecc8bfe3484dcac56ad6e5f5e7eac965fd<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.311.0-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->0d572cafe77ac25222b2001411134c5c0fdf0b5d25dcf7a043717a9eebdefcf9<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.311.0-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->2560b5509da58be3329745dbe5bdbe69ba43c4134d57a2a5ae4c69654aa6dea2<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.311.0-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->c4376be98bc5625ad9817e64c3c8dfd812a9554fe86fed38bdf97d29aaf14588<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.311.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->69a664fb025f0e146b96813ed0a22cc3722030ef445b41f44309d99d7c89324b<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.311.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->3e35f3a0e369a0bd11a2b6580b77907a87e5f8de08b75b2dea158617b450b7cf<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.311.0-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->418ebb4bcd89845fc10979134c3ff1becec97be1939986ebf84194982be9ca67<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.311.0-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->cebc645f1852f365d5a505facc3f502b23e67242c6eecbed1d6bc97d1bfe9ae2<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.311.0-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->ddfcd538875f82f189cecd40e3c72ce34e3026f11612553872a07d088d33c6f3<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.311.0-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->90f809a0cb151c8be805042ca0caa5021c8b6973de5b3e228ca0b303a29455c4<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.311.0-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->082e9e587331690c6baabf82e7849de34a011801cdff71c43c0706380b8f33f2<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.311.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->a35f2183753989a5c101731035745cd6aa5c0815383b7a13cdaf85f0a33b6be5<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.311.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->28288c0e11f5c4ec62a26aebc1db908d00effe89ad3f4f2e65266bef241f8a6c<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.311.0-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->98bef745c59c7530ac7680d63ef743d360ea9f82f03feb32a9d270bdbbb2878d<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.311.0-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->5d7290b94edd8eebc0030d0fbb83129a762cf83e44b57ac402cc8b6d5879f1df<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.311.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->0b7026446b73e0ee8c8ffa58bbb567856fa484e4b3566f54efe505cdc577494c<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.311.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->fe68abf8ec8bc678de952ba6e6615bc738a94ce0c86d8d1ec4760d3c6d7c9573<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.311.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->c30449652027c4b50b3987b0562298aeba70cf62ad77451c461f8a5fa234586a<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.311.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->d55ae27106ad4f1d5b4fd0829e859893701716a0b1eb3d68f71861efec419496<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.311.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->8a3ada89917db00e0cc28f1bdbb145477d00e9f16f4a8816d5edc70473d520c8<!-- END SHA linux-arm_noruntime_noexternals -->

Oct 10, 2023

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.309.0...v2.310.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.310.2/actions-runner-win-x64-2.310.2.zip -OutFile actions-runner-win-x64-2.310.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.310.2.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.310.2/actions-runner-win-arm64-2.310.2.zip -OutFile actions-runner-win-arm64-2.310.2.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.310.2.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.310.2/actions-runner-osx-x64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.310.2.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.2/actions-runner-osx-arm64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.310.2.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.2/actions-runner-linux-x64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.310.2.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.2/actions-runner-linux-arm64-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.310.2.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.2/actions-runner-linux-arm-2.310.2.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.310.2.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.310.2.zip <!-- BEGIN SHA win-x64 -->cc4c9e357345a33bd99834daaf2e051730305e0a4e33e5a6b47d39e6a93844e4<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.310.2.zip <!-- BEGIN SHA win-arm64 -->ab6cc1f3ab4c866eee80c55ef92f7464ecd1d12caa6acc45bb9d6b1f99b8c92a<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.310.2.tar.gz <!-- BEGIN SHA osx-x64 -->6e3e6017c25cf678bcc7015121aa64faa1c43e6243ee43a88d26c881fe60e324<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.310.2.tar.gz <!-- BEGIN SHA osx-arm64 -->313b0066ba7f6c0a818e088f965b147320daad8f9ab6eac1b302ea4ccfb66733<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.310.2.tar.gz <!-- BEGIN SHA linux-x64 -->fb28a1c3715e0a6c5051af0e6eeff9c255009e2eec6fb08bc2708277fbb49f93<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.310.2.tar.gz <!-- BEGIN SHA linux-arm64 -->a64e2d69d022c269bfa5be9c3fbceecc95f6ec415688b4e85bbccd98e30a85b7<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.310.2.tar.gz <!-- BEGIN SHA linux-arm -->2b0d82479c73201b8a1058c5d8f4e7efaa3fe0502fc6d2f2f03cddbdb66ce320<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.310.2-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->2af4b7171061a9a58e346814ea4a97f08d43ea07549b584c365002bf040b1d13<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.310.2-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->5af267a3f85b7c7c4586dc6296cdce6d0bda6718f11f6e9b81644467bac9d2af<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.310.2-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->c27f9b6074c76a71ed3e7cd4b0ae9b13fd1518b33971259ef8e2c20c145b44ac<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.310.2-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->bde9d54ac9ac78f2556eabe097eeac9bc506f2b699b21bff321f04665d880b24<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.310.2-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->9668a40be43d159a534056ed993a70c00d14cb8db0c8f27a85576bfc25775502<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.310.2-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->eade9f2a477f04d09cea6b3d7415d9df7796ed95416c1d6c0be32ec8c2759410<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.310.2-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->ffd22c869f64af6f7efe131e77a239d04a068feb040bf6f3cd7d7e1dfcef0551<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.310.2-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->374ad0df24f88a5ffc04ae57ffef8782fbb49ea2311b13b1e9ce3e41ca52bdc6<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.310.2-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->9965e87ccfb94ad9a9dc7ff55caa219596f9499ec481fe9c9dc99eeda8ad41aa<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.310.2-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->12d72f8f6a750f68272a1000e8050f6ec430071648555519893b454519683880<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.310.2-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->d0a880b7a06d32c6ec46f2846514230249c7cb3509664af64f3e95c6351213e3<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.310.2-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->813d1132ca279661e6fa72e74cb2f3944dda3e6c29810776c9c48670cc42e270<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.310.2-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->2cc17dfe114589bd7c199b0020115c3e36178f26ccaa2aab1496d04ab844774b<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.310.2-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->7a5d71c3840c5ca54c758790c04199bfbab2994fe674fd8a106b1bef9c2fe898<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.310.2-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->b26b1b921386c4d41b92fbbe10f01cd1d6051b0d7acd050bf56d05d9e89c3eb5<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.310.2-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->c9472c6fcbeb0857990378abbca3017d6d82e37b6a752e3d6add87b1eff7e52c<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.310.2-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->47adb97ea7f5d9eca9fb1da2590427b8f1972d109a34e904fa02603942f19966<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.310.2-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->6161d1ac7c9065344cf28c01cdc1b99f4bc62f1f0df45d9e7bb0f2e3e142c79d<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.310.2-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->2e8a8d3a0b8bd9eabd0746b70a7df4ac7826581766bc1a5d8681351dec3b7ccb<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.310.2-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->9d6c6d35fac93a792491ff489bc45ba1c931907b09c4270cc49b9305a9cc8b9c<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.310.2-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->e87ed8e18cb8535cca25b9af46f340cb08615b7f2963fa5c2fd4dadae096aefe<!-- END SHA linux-arm_noruntime_noexternals -->

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.309.0...v2.310.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.310.1/actions-runner-win-x64-2.310.1.zip -OutFile actions-runner-win-x64-2.310.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.310.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.310.1/actions-runner-win-arm64-2.310.1.zip -OutFile actions-runner-win-arm64-2.310.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.310.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.310.1/actions-runner-osx-x64-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.310.1.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.1/actions-runner-osx-arm64-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.310.1.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.1/actions-runner-linux-x64-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.310.1.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.1/actions-runner-linux-arm64-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.310.1.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.1/actions-runner-linux-arm-2.310.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.310.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.310.1.zip <!-- BEGIN SHA win-x64 -->e75c0da3774251ecd0d55b0034b3adc3cbcb5ca821481ccb377d1c4e4bda6d36<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.310.1.zip <!-- BEGIN SHA win-arm64 -->98804c13959cb41f0d27703504f512b679b46b1da85c49e774e86712bcbf9f01<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.310.1.tar.gz <!-- BEGIN SHA osx-x64 -->0e93b3dbdeb5d470373f6f9c8d04990b1c673ff03f1e441be1070ee861ba7a8d<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.310.1.tar.gz <!-- BEGIN SHA osx-arm64 -->92d40e3ef59a095b54e2f752808bc1af6509955b307197c56b2724a045d30df4<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.310.1.tar.gz <!-- BEGIN SHA linux-x64 -->f3fcb14066b7f57c750875c18dd83cc7e440edfac7e9f6242a7e44d1dc36479e<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.310.1.tar.gz <!-- BEGIN SHA linux-arm64 -->4e5362d53163e57f376bf2cbf42a7fa3f66b97d0630cd7c7241b43c34d130b98<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.310.1.tar.gz <!-- BEGIN SHA linux-arm -->133095d88de49d4dc3cb331ad61affecf8b8bab31a02b916fbb1968328ac3e44<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.310.1-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->1501f3380feed7236b7180b27e2ef99f3bc69390e07265d7ea619b3e0d1a9c6f<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.310.1-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->c390493551be7c9963c146e258c5d9039433dd345df364c68253afb99f0cea21<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.310.1-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->0421dfa750bf9950f1e0948f40afbfa44a1a9c0eb5d2b014a12599e6708461c8<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.310.1-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->2f9cbb4ad5dd280e3bc5ba64c3f9830f131b4aea828c1b9ae49df6977a2aa504<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.310.1-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->26eb79a649c9aaad7360d91ef92fd5d1a1bc8606127c2df3cb38929b33473b83<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.310.1-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->1b734ac483f0c6f542b9dd7a017481eae011e92a0b3d1a5852e672086c5ab631<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.310.1-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->15c12b87278b11a56302a40ba88d7d402ff964aca8b6ed44f4863fcfab93442a<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.310.1-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->be9915e1382e2b44a92ef5d591cb2cc5d5e42297327963cecced401f40d03924<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.310.1-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->64e970497fb402a36229365a03c9711b4f2855f01978c907770c67d895555070<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.310.1-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->6a92fcb4d75bfff53886a333009d670daf2d39d74b7d7d8fccdc96ec90c03e67<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.310.1-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->4b6602425720ff800fb46b582e6807c61d7df19cb2f696866e09028d20a53f4f<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.310.1-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->2743d3d5efcc422dcc061280744ec473a76b0ec976bcaaa21a0754ec2b29c52a<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.310.1-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->163a1b529f4c4745699b4f8ab32d709614ae71627e9d0f0fe21c3345c71a2a40<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.310.1-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->773f2d521e427acd5e8a31fb30e19427361f4f2b946b288689b639b6be16a46f<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.310.1-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->60eb385216ae413ece687c6d42a66ef232b229f15cd9f07d6da249ef1267c2d5<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.310.1-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->c03e35e02beaf7c37a399188e6c5f423e2fb5eb40cf11bf0ac7d50563667c023<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.310.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->dfd3f3c2a3f0ce7fc319acb0538c9a5261d896cc7cb17721b01ce4898b984386<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.310.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->75790a54071ab5ce2e810241945938c305c28b95d62952c512ad6f0f81729e4f<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.310.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->f55c7a54199782037403abf68abf43c62847d0522f2d016a1b75547aa9ea343c<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.310.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->82a68026d226239f8d19946af471fce7b1586f7b35fb608cc52dbfdc03bd4e58<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.310.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->0df8afc09f23d41c9502a116078963f59bd270862401301c5b6ada36be9e41a8<!-- END SHA linux-arm_noruntime_noexternals -->

Oct 9, 2023

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.309.0...v2.310.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.310.0/actions-runner-win-x64-2.310.0.zip -OutFile actions-runner-win-x64-2.310.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.310.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.310.0/actions-runner-win-arm64-2.310.0.zip -OutFile actions-runner-win-arm64-2.310.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.310.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.310.0/actions-runner-osx-x64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.310.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.0/actions-runner-osx-arm64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.310.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.0/actions-runner-linux-x64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.310.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.0/actions-runner-linux-arm64-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.310.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.310.0/actions-runner-linux-arm-2.310.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.310.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.310.0.zip <!-- BEGIN SHA win-x64 -->b2ad34e2b7b5ecff93d8f022a1b9ae872d5116951013393b0d86ef290f426d57<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.310.0.zip <!-- BEGIN SHA win-arm64 -->9cf5df1cb66b82b7feaed4d6891b1e0b97546e78c4c9a6626ecc2994e06d5075<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.310.0.tar.gz <!-- BEGIN SHA osx-x64 -->2d60c6a09448cd5263523bf840f46d8ee177333926c891709ee4b2a871db8ec1<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.310.0.tar.gz <!-- BEGIN SHA osx-arm64 -->c458f67b4cd79461e756b75d2dda704dc009672d3e6b0927ac56cf8a802ff1fb<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.310.0.tar.gz <!-- BEGIN SHA linux-x64 -->7ed6e2594aa8fc5b5a5e1986483f6683746f85695f4266a525e27b0e8e233ca7<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.310.0.tar.gz <!-- BEGIN SHA linux-arm64 -->4aa4762880f3b17ff63ce585dd26aac783011c36bd034cdc06ca410d941d5274<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.310.0.tar.gz <!-- BEGIN SHA linux-arm -->1ad707e1e9eb03ae6ca7d04049dd00202325142f3f1122c6d46eb46ba486eb69<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.310.0-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->03e99bd9aed88685f7942d9a18d96ddb1af7c4da11c6153e7f593a6f1e96ac50<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.310.0-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->b0d8ccc824a62d3fee71b9b390b1d286a3dd62b84f1d6ed0b3030ca7af6a443b<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.310.0-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->d0a7b038062e80c81d84286405c438b1a63d79004d07490e7b85885cee99e789<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.310.0-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->091275f50d1a510a65e6ae64e30432bc0ff1d9320c4cd71d015abb890e12780b<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.310.0-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->380bf166f149a99524997069aeb39c664fb3d4687c8066a9d397be2df6b0f541<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.310.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->9ed9c0a9b768e31299a9faf384797623a19d5632f5b91ca4027e02384a06420a<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.310.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->27fde4b9d2faaef6f1fa64d9857056aae89b74b1eda330894b567e56cf503c82<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.310.0-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->15b217939e7a1fd7b69c9fad146303d7be2603357988ef9f888854c412eaf13e<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.310.0-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->155c38b5a759e68b2dfa42283904187d7ad2e3f99cc557211812246b589a3f1f<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.310.0-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->a73d1204824b783bd1adca7b95b5b7ffa957d669231ae13edaf8d681e45ba489<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.310.0-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->75e9e8f56cf4ab62dd07caaca0d9354d5e534b46429263bcdf782cbb0a39617a<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.310.0-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->b5152195a2cf8527731ef6a3a26c390c13037b451dbbde0146105ac4364e98be<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.310.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->393282fbbc567e5c5c23947a13a506db31259070491c7bcabe20b94f9b53582f<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.310.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->8c6880bae4755575d11da56aa230bc4adc1383319e3899264b23cdc700d7765e<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.310.0-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->afce137ab5a6ebdca5fb0470eef6e2b8343fd7c6e294c90a7e13f7d5c60eff56<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.310.0-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->e65ae43d7a5e9fa28ebc0b68e45e06bd29fd1b3afb15a49fd4cc93e7adb038e1<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.310.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->4e03b9f01688a2924dfae1bccf1ddaacbf9d374b7f4c64408d41334c6ac7091c<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.310.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->7fed094d9bef6a99f780f0cd92f59dfeb0f99ab59a16325ce4d9acef462b923d<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.310.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->ab550267c88d91fc31a2483ffe7a8ca21f5d64a53ee2580e050ebf10bba3a154<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.310.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->0cdc5be684ef89eff4ea2f500a7d564d8e0723ee4c104626016f76b0776de7c4<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.310.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->704cc846800f1bb4cce4effd5e190908deac6d15d1e15237713f4fc2ba2537fa<!-- END SHA linux-arm_noruntime_noexternals -->

Sep 7, 2023

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.308.0...v2.309.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.309.0/actions-runner-win-x64-2.309.0.zip -OutFile actions-runner-win-x64-2.309.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.309.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.309.0/actions-runner-win-arm64-2.309.0.zip -OutFile actions-runner-win-arm64-2.309.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.309.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.309.0/actions-runner-osx-x64-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.309.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-osx-arm64-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.309.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-x64-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.309.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm64-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.309.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.309.0/actions-runner-linux-arm-2.309.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.309.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.309.0.zip <!-- BEGIN SHA win-x64 -->cd1920154e365689130aa1f90258e0da47faecce547d0374475cdd2554dbf09a<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.309.0.zip <!-- BEGIN SHA win-arm64 -->114d11ba8b95c22946c642cc9190c2214f6a2da60c2996ae26e2d9dc176f994e<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.309.0.tar.gz <!-- BEGIN SHA osx-x64 -->cce9394ff3e619d24c6a285fb2a633202c115f058437675b53fedd8fb01ec7ce<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.309.0.tar.gz <!-- BEGIN SHA osx-arm64 -->67c1accb9cdc2138fc797d379c295896c01c8f5f4240e7e674f99a492bd1c668<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.309.0.tar.gz <!-- BEGIN SHA linux-x64 -->2974243bab2a282349ac833475d241d5273605d3628f0685bd07fb5530f9bb1a<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.309.0.tar.gz <!-- BEGIN SHA linux-arm64 -->b172da68eef96d552534294e4fb0a3ff524e945fc5d955666bab24eccc6ed149<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.309.0.tar.gz <!-- BEGIN SHA linux-arm -->97d3c06c8e2b33fcab4c5afd0237e596c52cc4450465382bcbd49a4b23b978a9<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.309.0-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->3be84215fa5658db013da201d38abd147bfbc48bf8775c62b2da8b760a1a9afe<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.309.0-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->914d512a90bb9b090701cffb11bb4b413d2f7a9e09e7ddad7c3b2d439c090461<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.309.0-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->4397b8b0722b2223e50a7490720059786ce7429e8e5de81905671562f0a2291e<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.309.0-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->ebe017bde8ea8939ef1633f003b03bc5c461e0fc843e477e21d4df402d08abde<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.309.0-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->58ae2e9e6425f4acab67fbdaf6362f8cb893d5884a660ef1b0f3d983af3df1e0<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.309.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->de2cbc67d23eb3c479bc7e6c24abb74a589d8ce7f6c2aa1fc0bf4313b5e40137<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.309.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->3a11f10e5a6ea0863ba2632dcb306f0b74b19847b3dfacc99f6b55caed686a87<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.309.0-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->616ec4a8136904c5c86f14876e81021c4ee03a84fce4be5ec87f7ec0cdc8f592<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.309.0-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->458cb2c633ccee2bc43672df8e26f6e6ead45462dcb8077f8e8a2609cc3bc85e<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.309.0-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->5a25714a62d1956a4fc4b15a57915a5c66105e7236705953f44389944c7b1060<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.309.0-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->24636abd7715d695a7759989fd73712613dfcb52859cf8aee4951e8ccb6ce404<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.309.0-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->6d5fe6cd7572bff379c790baf7fdcf7e4264dac2cafa4afc831901a6a63b4781<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.309.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->94d01d7da1311064660e7199b9d50c06d6b9e9116950ba00732a1ceecddf9881<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.309.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->96836653790426973a518270b6c8da6d1411635735ac2ce2b447c7e23ec2eb0d<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.309.0-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->e64f9f7724dd281e9cb2446fcf821bd1be303e6a09933a061f20387f276b40c2<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.309.0-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->6e38a5761d9f520ca08df3f20bca2e1d7aae0e24f25832799caa0bc807c47bcd<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.309.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->a6ec43940746e996bf1a62d2d1eb429b9086704c46254ed24cebdb0283565879<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.309.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->9273b0e0d6e22baaa6ca2d44b5092e1a139e97e4a7d95d1d8d5385d98acffdc3<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.309.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->8433fb0b94c7f29d0685fe548429f6d31ea8faa9f1eb8bded0e374b13cf047e6<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.309.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->e921dc47d179cd5a00d5a96978e5704fc6b211503020b5b0303cec8da1ae3f0e<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.309.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->2753ceb5badbabb915bb39fbf98b0959b37bee520ba344ac8d0d73ff70f66ef2<!-- END SHA linux-arm_noruntime_noexternals -->

Aug 14, 2023

Features

  • Support linux/arm64 docker build (#2601)
  • Add node20 to runner (#2732)
  • Update node16 to latest version (#2736)
  • Remove node12 from runner (#2717)

Misc

  • Pass timeout in ExecutionContext instead of StepsRunner (#2714)
  • Return early on invalid_client OAuth exception (#2721)
  • Expose results service endpoint as environment variable (#2726)
  • Update HTTPEventSourceListener to trace the right events (#2727)
  • Change RunnerId/AgentId from int32 to uint64 (#2661)
  • Configure stale bot for Runner (#2729)
  • Add in dependabot security scanning/updates (#2743)
  • Bump dotnet sdk to latest version (#2733)
  • Switch from InnerException to ErrorCode on disableupdate check (#2718)

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.308.0/actions-runner-win-x64-2.308.0.zip -OutFile actions-runner-win-x64-2.308.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.308.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.308.0/actions-runner-win-arm64-2.308.0.zip -OutFile actions-runner-win-arm64-2.308.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.308.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.308.0/actions-runner-osx-x64-2.308.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.308.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.308.0/actions-runner-osx-arm64-2.308.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.308.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.308.0/actions-runner-linux-x64-2.308.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.308.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.308.0/actions-runner-linux-arm64-2.308.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.308.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.308.0/actions-runner-linux-arm-2.308.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.308.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.308.0.zip <!-- BEGIN SHA win-x64 -->05aa7d07223e7591f138db5a6a5f1b6f24ed22ab8b539307a6cf899f377f320f<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.308.0.zip <!-- BEGIN SHA win-arm64 -->569a8d18b6a4171b95dcc69075c3dda6088982fdcad72cb95540179f6c2a9c3c<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.308.0.tar.gz <!-- BEGIN SHA osx-x64 -->b90f41c2f3af19c4feea5e70d32c6634e800663af95cdd892a322b304d5ca2de<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.308.0.tar.gz <!-- BEGIN SHA osx-arm64 -->a8b2c25868e4296cbd203342754223dd2cc17f91585592c99ccd85b587d05310<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.308.0.tar.gz <!-- BEGIN SHA linux-x64 -->9f994158d49c5af39f57a65bf1438cbae4968aec1e4fec132dd7992ad57c74fa<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.308.0.tar.gz <!-- BEGIN SHA linux-arm64 -->e39b3137fcaad3262e1def26d3e42cdd810c831a3c836deeb560a2266338b503<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.308.0.tar.gz <!-- BEGIN SHA linux-arm -->907d72620afe986a2c1b28091413fbdbf818236a83e19a9022c9aa57f6b35cf5<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.308.0-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->669d5d1125e1c4aff65e71ec035cb15b676342adfe05d9bc17fedc77676a31cd<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.308.0-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->0d4cfffda5be90052c3df0c66161a4e369ce1f63afcd5e629bea7944b8db296b<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.308.0-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->ef3b1e56c1b14c04209de1ad58081580ef4446b5a21a7f15465e7ddbd44ab913<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.308.0-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->4bd20d7d2f177fe548256186e65b9f89ca391f011a4ff966b36e05a994fa6e08<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.308.0-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->051e285234580161f77836b40a9e7c3d9cd93def29bf09100b6f88fd94f40c86<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.308.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->a8da2e2845a5c4e55b380f328c8dcb6720793222671de25e41d39299c095dc93<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.308.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->4273a052a454b3f3d1228d7320adff75c70c24cbb20d0b026f5f11e4d72ac2a3<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.308.0-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->a400ab1203952864dd85d4084211952c4fdc045eec1819e18b17c2f27758a092<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.308.0-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->42d301c25e601da886f5b405ad85c8327cb3217442346ce21fdc46e125b33f92<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.308.0-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->65f4fb8afee2acaef4813a29b790fddd9787b806067a1871ad72e226567917d1<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.308.0-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->be071195e542136a8d95956eaf793e9e02a964b39c768aa0b1f2409bb71c01ef<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.308.0-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->5b6d6865a664634269cd2ba9ed370e5f0363db41d466c1d06cdf75a03b78677c<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.308.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->7142707ef5b1bc69c41068ce3caec1a45f0a17c8b96800bc6d56277b5e9d7b0b<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.308.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->031c5d2e1005feb53c544593b3fcf2ca1288b6117b8d910a705c95e2e7b460c5<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.308.0-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->152b5921c2934b4fd38b39489014796519c685efb3f93e0b34e4dafe1a89329a<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.308.0-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->b8d5516be21490072a8d674b1a9795bb2cdd1ad6b830142b7833efc16665e8e6<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.308.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->94df44f9b5435ad568de1ed3336d1d374d63a643175dc66a4d4a7494f6d4455e<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.308.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->5d96c58ec0baef3449b38ca595e82df7b9d85d4a0285b4552c774a1f2c3dd8db<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.308.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->4498e87da43dcc869ac0f8b0dd73f94bdd4307d48b29b0965fe7752e8a1107c9<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.308.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->4e4fa4a68d5575c6ce0f27780d4a14e699891028fdc124d0d7b1696a6b3638d7<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.308.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->184717f25c68780c2600d15ca10bfa90ef221cec775be1d42dc0b040dbfeef7b<!-- END SHA linux-arm_noruntime_noexternals -->

Jul 25, 2023

Bugs

  • Fixes if:cancelled() composite steps not running and normal composite steps not interrupting when the job is cancelled (#2638)
  • Fix the bug causing double error reporting fix to remain inactive (#2703)

Misc

  • Collect telemetry on GitHub-related HTTP requests (#2691)

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.307.1/actions-runner-win-x64-2.307.1.zip -OutFile actions-runner-win-x64-2.307.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.307.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.307.1/actions-runner-win-arm64-2.307.1.zip -OutFile actions-runner-win-arm64-2.307.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.307.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.307.1/actions-runner-osx-x64-2.307.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.307.1.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.307.1/actions-runner-osx-arm64-2.307.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.307.1.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.307.1/actions-runner-linux-x64-2.307.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.307.1.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.307.1/actions-runner-linux-arm64-2.307.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.307.1.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.307.1/actions-runner-linux-arm-2.307.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.307.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.307.1.zip <!-- BEGIN SHA win-x64 -->d7ad12a75d2af7bda6e89c0406cfa61037d86c91d8c0b63526ac76a62eaca6cc<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.307.1.zip <!-- BEGIN SHA win-arm64 -->428868b0a034b07ac0b0abd47dc3bbe7ef65361429c4aa46eaaddc8248dce438<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.307.1.tar.gz <!-- BEGIN SHA osx-x64 -->7835fa206242ee8ec985a2124cd486a7ebaf4264e43948f20200095b19f32170<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.307.1.tar.gz <!-- BEGIN SHA osx-arm64 -->e80cc999df5a2214df6a72008442913a41e85bad0be6e6be0f22dbc03bbd054a<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.307.1.tar.gz <!-- BEGIN SHA linux-x64 -->038c9e98b3912c5fd6d0b277f2e4266b2a10accc1ff8ff981b9971a8e76b5441<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.307.1.tar.gz <!-- BEGIN SHA linux-arm64 -->01edc84342ef4128a8f19bc2f33709b40f2f1c40e250e2a4c5e0adf620044ab3<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.307.1.tar.gz <!-- BEGIN SHA linux-arm -->dbf978d969f4101bcef40eac438a43a3a763720ad2ed06f3eecbbbce16126d79<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.307.1-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->dd3218239289fc3f4e5067e4f05ca987afdd1fa52d21e2775b791688c7dd65ea<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.307.1-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->d015f839c85b33af00aa068b016312e4797cd9753ba54a1c46c9ea06e60faa67<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.307.1-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->e53dfcf0e19ccff14996f3cf95aa214ea4d236bad41b8d828b01da09033c75e7<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.307.1-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->512c39d4d03008989a427d10051e46797856245ee6924902941da403f10f3747<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.307.1-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->2e4c06048edfa988b3dd6e16e1c74f5e9c2320bb7cd0f71c7305f400d6238f46<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.307.1-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->26e43578e7743234ce11a7c96b6269b92ef3de2746fde21bd40223cd0aa1bf5c<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.307.1-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->5af958593c78ba21836d714895d40edf31107e226fc771327748deecace299b3<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.307.1-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->e9b43357abe78bd5277d77695747153c304bce8d87750e1b54a31106b0f62c8c<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.307.1-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->a8e2c96acb625120bbb2c2f1a43181cb53ede25e8c780649918122dc42ea3411<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.307.1-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->8d50786a1bac384824c0d4f240a9bcc67da70ad4537912c00e0cd146ae6c8f1e<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.307.1-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->3341d60c4798b9a400b294a65be1bc68aacdce7567124c733c78c2918bbed55f<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.307.1-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->737f23a15d47b5fce2c096eb53c8414ee9b9254a9b30af33ad0a684e0b217443<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.307.1-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->b8a39af975d246896cb527a0b360b8f2faffad20743b1cf1c925d5059e2e6d77<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.307.1-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->903f9cdc87f898722d42d808ccd191e5275ce92b3297e176e7b87c6ed46f0c02<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.307.1-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->7287a3e920f2ef0f1bded86b9a2de0583628f4a82486bb02b59e5c91797880fa<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.307.1-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->0d055b48213ce55dbea83e944e55fd974b9f57d1351e63b44a42d065f79d8e0d<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.307.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->d1396fd3c77f5d91ff5550fec79307c96e808996d3068fce8bc25c4605637e59<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.307.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->f4734ecb06e3454a0b90c2f4f3312efc554410a1918e4c93e9165313eaff3fef<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.307.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->9654ebd4f3eaf14b8df96521c749d17fc4d253f428bab141749c678072c55933<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.307.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->e4b6e178ae4897e2bdd50cbbbae773199050387d94aa73d7ad363e71dac8b397<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.307.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->ea48ae905acdf7138da1e860ddbe6fb656ffb0583a4a8d9af5a8d19f9b7474ab<!-- END SHA linux-arm_noruntime_noexternals -->

Jul 24, 2023

Bugs

  • Fixes if:cancelled() composite steps not running and normal composite steps not interrupting when the job is cancelled (#2638)
  • Fix the bug causing double error reporting fix to remain inactive (#2703)

Misc

  • Collect telemetry on GitHub-related HTTP requests (#2691)

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.307.0/actions-runner-win-x64-2.307.0.zip -OutFile actions-runner-win-x64-2.307.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.307.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.307.0/actions-runner-win-arm64-2.307.0.zip -OutFile actions-runner-win-arm64-2.307.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.307.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.307.0/actions-runner-osx-x64-2.307.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.307.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.307.0/actions-runner-osx-arm64-2.307.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.307.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.307.0/actions-runner-linux-x64-2.307.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.307.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.307.0/actions-runner-linux-arm64-2.307.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.307.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.307.0/actions-runner-linux-arm-2.307.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.307.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.307.0.zip <!-- BEGIN SHA win-x64 -->329e9f9970572c030bc751df8a0288be12806a58d247ba1ee798eaf5e411d04f<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.307.0.zip <!-- BEGIN SHA win-arm64 -->455e359e036ef9580c96aaae6086e4405e28ccc3e6d0899f47cc6618d49e6056<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.307.0.tar.gz <!-- BEGIN SHA osx-x64 -->094877222f5076a9b5c4477495a983fc6186da9c32565d4c6f1d9e0158bf5807<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.307.0.tar.gz <!-- BEGIN SHA osx-arm64 -->61192dc2a5878f0262065c5530b6d1d5eb9b3864003b648deb4fd9dce0b66fa7<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.307.0.tar.gz <!-- BEGIN SHA linux-x64 -->13be5edefd6298185ef57dbb97cb60481009d8058819d7971baef2773b4544c1<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.307.0.tar.gz <!-- BEGIN SHA linux-arm64 -->5ed2ca5a6f99336510d738ec92b6d42b52373d9724959b95987bf254c43e060a<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.307.0.tar.gz <!-- BEGIN SHA linux-arm -->f7f7b763d564cb6272595ed5649066b07ca39754e4a5f69ffa025be046c5a263<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.307.0-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->26c4033de7383551ac0ef561f90cd62bfd0a6cc9ead40a980885f4622dcfcd9e<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.307.0-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->17870b4eb7d1e0ba5f38acf65c92b188d5b7835460120dfc1adcbbc1b6de31f8<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.307.0-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->8fe63719511ebd2c7e8b1b1ccb839dad551100796b1392c576cde4865a4287a4<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.307.0-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->de70a9a6895da78c502e537d366d970b7cb30de2f24a86e5a304cf7c5e2ed422<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.307.0-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->9797498a6aa2bb1eba81ef24204c09c7e656bf6e56b23f7bfcf567ba51932c3f<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.307.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->e01bf226da96a22bfbc1fd9702037f90dbdfe1e1a28a8a283276170be437b0c1<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.307.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->51f218a980e09ff1db0bb88678974250c3bf90749f9d12bac122cdbc822708a4<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.307.0-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->ac88235702866de3417944b17f345a7fe70c4155935ab8eb75125067948ebdfd<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.307.0-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->ae221a4319aa80059a0f16569cec82b87b7d07f46010d17e0c719347ff0a9e6d<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.307.0-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->26c8d024f059d5757fd2f220a2127c682cedcc24a35e01c6deb37ec052e6dca0<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.307.0-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->90d7f5b073922e8974a0eaecf1c00c0e943f68d8f28947caf18066d97f13b642<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.307.0-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->4105b7c7e5656c9090f78666f20f1e00eb493d7a436540dd84916c22de044791<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.307.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->b25b2a4c01e7d401224a0133f5d1e4fbad96b46f1527c9b8bbca59c85c08f805<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.307.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->00b29fd6fc14437c37068979846ed9e5dd978d31339647df8a302cd3acc41457<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.307.0-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->4099d070ee8aa0d29bb0f0b766f4df1fe8e4ee2d813d636e07f3b27803eee48d<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.307.0-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->129fb022e40a87ba0a3d0c80fb7e96f11debb82eddde9d6cad719b68978215b0<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.307.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->d4be2b167fa19a26ecf7be8a8d54c9fbb641a6f97461149e680b0185475567cb<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.307.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->2f70f5cb2c970b662b2ebb1683d7b577bbc250426f43cfe8489aa4c352f975b5<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.307.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->735e694ea756b8594afe9df14540e26f0256e17a53e723731287389b0a00e4dd<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.307.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->c2bb8458fffa839ff18750eb051b35040ba1860088262727ad9059c33b9cc2a8<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.307.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->241f8464682be44ee73362a210638188dfd5f565a2f38b3fce24e61bb9b08668<!-- END SHA linux-arm_noruntime_noexternals -->

Jul 11, 2023

Features

  • Runner changes for communication with Results service (#2510, #2531, #2535, #2516)
  • Add *.ghe.localhost domains to hosted server check (#2536)
  • Add OrchestrationId to user-agent for better telemetry correlation. (#2568)
  • Add warning to notify about forcing actions to run on node16 instead of node12 (#2678)

Bugs

  • Fix JIT configurations on Windows (#2497)
  • Guard against NullReference while creating HostContext (#2343)
  • Handles broken symlink in Which (#2150, #2196)
  • Adding curl retry for external tool downloads (#2552, #2557)
  • Limit the time we wait for waiting websocket to connect. (#2554)

Misc

  • Bump container hooks version to 0.3.1 in runner image (#2496)
  • Runner changes to communicate with vNext services (#2487, #2500, #2505, #2541, #2547)

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.304.1/actions-runner-win-x64-2.304.1.zip -OutFile actions-runner-win-x64-2.304.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.304.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.304.1/actions-runner-win-arm64-2.304.1.zip -OutFile actions-runner-win-arm64-2.304.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.304.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.304.1/actions-runner-osx-x64-2.304.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.304.1.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.304.1/actions-runner-osx-arm64-2.304.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.304.1.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.304.1/actions-runner-linux-x64-2.304.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.304.1.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.304.1/actions-runner-linux-arm64-2.304.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.304.1.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.304.1/actions-runner-linux-arm-2.304.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.304.1.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.304.1.zip <!-- BEGIN SHA win-x64 -->b2854da3c6fa2210c6b0f7881da8166db2ebc2336e609d0016453c48df49678c<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.304.1.zip <!-- BEGIN SHA win-arm64 -->d51220c67d463991eceb5862821514b38ee4b771b992b446d45e43e920afb7c5<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.304.1.tar.gz <!-- BEGIN SHA osx-x64 -->8165ca0618fc70aad03af14e325d7623687aa9708b6f49d5983b6d66879ec983<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.304.1.tar.gz <!-- BEGIN SHA osx-arm64 -->f604f793bc2df91fd0c5adc27a98f2bd5aebdc6d33d30d031a4495fdef2cb737<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.304.1.tar.gz <!-- BEGIN SHA linux-x64 -->27f2ad7eb52f8463a1475e8291c1e96af77eaa3b6872489560f1e96ab6d374e6<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.304.1.tar.gz <!-- BEGIN SHA linux-arm64 -->3eed798b5c3e306df9f492b3df0ce246d6087535601255084ee1b910d06ffe2d<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.304.1.tar.gz <!-- BEGIN SHA linux-arm -->c736bd2f2fe9190f810ab718d067d43fc870b0b3694383cd6e3f603eaea675c4<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.304.1-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->b10afd9e2ef6ac76cc9e92f4cecc66f9050c169866118bcbdf9e3525dc7a696d<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.304.1-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->7c0279d4945be87d7abc9733fccaee76da199488405668822ea1daa169f45fb1<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.304.1-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->e64dac906f067228a55516ed622be41d4e46c9f94d9126391abbf817575c817c<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.304.1-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->26c0617a9e99fcd74195054bd72b45040a443807fcb89e0e117f426b01793985<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.304.1-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->b58f36d620a454a8e3f6cac9a5c10d5e8104a25f37a69728a3895e64ff3c4b96<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.304.1-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->8bf35c4a4b874422c74a8a049dd4134fa2a1d9195814375b9796bd0ed16447cb<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.304.1-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->b2b4b96a4939e46cdd58280b15896e8137b4f55c1fbaf94e1ceba360f0511047<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.304.1-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->af7a8ac13bfb9052e46e486d22b69ed52a02e589fd2b29041734371e24bec48f<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.304.1-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->02e863bf3909973bce2bf654f1c47e4875016c56236298c8b408fd6e61ca463d<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.304.1-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->bd62aaa87581d9f9f6cc260abc4fcf0ba2efa6f43847944c21a803a2aa336ccf<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.304.1-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->c8543652f98faf808946324b7d3cf5d3a99050ec14c23a64213bf24c0e4d9c23<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.304.1-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->783cc27e45a6551c810e1f1c0fd5bec20645cfae31f17d58bacf38c6fc1d5bfd<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.304.1-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->5435a6ad3b9f7eb3107e28cdcc58e7455a655103cd49fa549fe9ba4459fed175<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.304.1-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->70257c87f141798b989006fe26cdbb8d0ee03c9f3da97ce85a5c34ffd37bb053<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.304.1-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->be58b27b8e6ebfd4cded63cfbd057137bc9721a13a1d3a5a5162a27929af4698<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.304.1-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->522d4020610d834b78528b7d61cc4564bb252fb59d21c20243cb508844da7fdc<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.304.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->90d3103cfffb5ef68826bf8dc04428e33b63bd6dc1b3ba12639d76ecea192340<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.304.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->071ee9890d7ee6c8ae69656bc9c1a967897db84ff1dd9c9c9f3222aa93365695<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.304.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->34d6c5d5dace7c85bc1a1cc40dbc496e3474c0bb9d060977e1681d6ddec361e2<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.304.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->6df35113ee6a5740480bece35fafda7c12e542abec6d3abfe165d8fcdc69d2f8<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.304.1-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->329cfb970557839282966e00fcd83fbd6349a2d193ce841e3b4b37b49f134b4c<!-- END SHA linux-arm_noruntime_noexternals -->

Jul 7, 2023

Features

  • Add warning to notify about forcing actions to run on node16 instead of node12 (#2678)

Bugs

  • Remove job completion from runner listener (#2659)
  • Fix double error reporting (#2656)
  • Fix a bug with incorrect parsing of image values in a container action (#1873)
  • Fix error message reported on non-local action setup (#2668)
  • Extend github context with host-workspace (#2517)
  • Fixed a bug where a misplaced = character could bypass heredoc-style processing (#2627)

Misc

  • Send environment url to Run Service (#2650)
  • Reduce token service and unnecessary calls - send token to redirects (#2660)
  • Add 'http://' to http(s)_proxy if there is no protocol (#2663)
  • Remove extra result step for job itself (#2620)

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.306.0/actions-runner-win-x64-2.306.0.zip -OutFile actions-runner-win-x64-2.306.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.306.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.306.0/actions-runner-win-arm64-2.306.0.zip -OutFile actions-runner-win-arm64-2.306.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.306.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.306.0/actions-runner-osx-x64-2.306.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.306.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.306.0/actions-runner-osx-arm64-2.306.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.306.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.306.0/actions-runner-linux-x64-2.306.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.306.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.306.0/actions-runner-linux-arm64-2.306.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.306.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.306.0/actions-runner-linux-arm-2.306.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.306.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.306.0.zip <!-- BEGIN SHA win-x64 -->998fd610e6024cb7015240a82a635a877aab4d6dfb0de89bdd167b0128452721<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.306.0.zip <!-- BEGIN SHA win-arm64 -->70655f84090b0e4630ce310777a0a955d47390fdaf136687bc854d006e9f3e3a<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.306.0.tar.gz <!-- BEGIN SHA osx-x64 -->842bfb1d707fd7af153bb819cdc3e652bc451b9110b76fcb4b4a4ba0c4da553a<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.306.0.tar.gz <!-- BEGIN SHA osx-arm64 -->4e4a5e7de762c800c4d41196bf6ed070581a1e3c4a2169178d3dbc27509a55a8<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.306.0.tar.gz <!-- BEGIN SHA linux-x64 -->b0a090336f0d0a439dac7505475a1fb822f61bbb36420c7b3b3fe6b1bdc4dbaa<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.306.0.tar.gz <!-- BEGIN SHA linux-arm64 -->842a9046af8439aa9bcabfe096aacd998fc3af82b9afe2434ddd77b96f872a83<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.306.0.tar.gz <!-- BEGIN SHA linux-arm -->01799a8e6c39788a9f848e903de1ed7d0503d695d0ccc57f4c57ca78f35499c6<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.306.0-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->d5e5400ac9803129c4daf0366cf0c5a45bb784a5c24a2fede46dcf2a8ed7aa6e<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.306.0-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->92f6d7a6f5c984004b4d74a6e8b87d0ec9ce42f54f0016d3b45528c3a72627e8<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.306.0-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->9a37e71964a83a1bb8efd7b6461181e5c51106d612407763523d75c6cf38f8ba<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.306.0-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->ed119d1142b8ac00d69a0c68c6e0adf0eec35ffbdf3e6e0174b754dfab693d80<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.306.0-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->4f4b5e0e21023f2a53c9a0a91c95e5bbd33e695623c5c3c8236dde4e8032f96c<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.306.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->9d817daa7a766c5a3d2ae7eb42c11935066cea8f1b1d3b9e333cba325654ee5b<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.306.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->f7ea01dc5b0d7e4dc7ca243d810f55bb135ed436912ac3361bb68d089c4387aa<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.306.0-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->51debad8a601bbe49af63b55e67f1febdec18a025243420dc252b55a51314e80<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.306.0-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->53d4554a89fb6a5c34a1f375c9358bdeec795750214f3382e16c26b6fe230f5a<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.306.0-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->a7dd7064aaf7cd09498cec95e656024b67fcd42a2354a89e4c1b24e4c89f2ac9<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.306.0-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->7022b4004e045c213cc02f61ced7412fc936ba6bedac25caab88c82d44e5f77c<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.306.0-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->f4417785eff5060d21cb47c104a09e02d12feeda971bde230c98d0f6613c1384<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.306.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->83ee93d70d90e27764d9577a27e345fb3baf810f30779e5ec7f9b61b4ff9c1e4<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.306.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->60e6be3e5abc736933e846c7af55a606dbb1576ae3628d203b9064a13a264e86<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.306.0-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->da3e790a4a8c79191082bf3a737958fa6b1c6889cc15c3f645bf8c41b4c89765<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.306.0-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->566dd7d54c266c4cccfdb3f97e0e76bb79f79305c456bc4a0296b056e5b8c8a5<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.306.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->603b8976ea31b2cd44374a127582c22a188b14e338292c83f2e4c474a0beca8e<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.306.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->1269824a2fb8f70f1e35e8aa4bb4f06c41122c65e8b6febeb5ee2d963ed82a8f<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.306.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->f39902fd12ecae097a0a428a39918b28f4912f26afb08967301775f362bc1c07<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.306.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->70aa27839eade6d5ee8fc90b66b37f9fddcefbc36a0ed73d84608f926fb5a6fa<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.306.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->33afd2d49edde3b7ea58cd0483610a6ad0a6fb0cecdb6aa50b9c64afe53c4936<!-- END SHA linux-arm_noruntime_noexternals -->

Jun 14, 2023

Features

  • Resolve Actions Directly From Launch for Run Service Jobs (#2529)
  • Send annotations to run-service (#2574)
  • Add --no-default-labels config option to self-hosted runners (#2443)
  • Update container-hooks to 0.3.2 in runner docker image (#2618)
  • Set runner environment in context and env (#2518)
  • Switch runner image from Debian to Ubuntu 22.04 (#2651)

Bugs

  • Handle conflict errors from run service (#2570)
  • Fix null guard bug (#2576)
  • Trace WebSocket exception into verbose level to reduce noise in diag log (#2591)
  • Ensure multiple composite annotations are correctly written (#2311)
  • Adding Consistency to 'Failed To Resolve Action Download Info' Infrastructure Error Flagging (#2488)
  • Filter out empty arguments in container hooks (#2633)
  • Fix uses: docker://image:tag steps when container hook is used (#2626)

Misc

  • Contribute.md: Fix link to style guidelines (#2560)
  • Remove Temporary Serialization Shim (#2549)
  • Move Using V2 Flow log to Trace (#2635)
  • Add utf8 with bom (#2641)

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.305.0/actions-runner-win-x64-2.305.0.zip -OutFile actions-runner-win-x64-2.305.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.305.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.305.0/actions-runner-win-arm64-2.305.0.zip -OutFile actions-runner-win-arm64-2.305.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.305.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.305.0/actions-runner-osx-x64-2.305.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.305.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.305.0/actions-runner-osx-arm64-2.305.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.305.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.305.0/actions-runner-linux-x64-2.305.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.305.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.305.0/actions-runner-linux-arm64-2.305.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.305.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.305.0/actions-runner-linux-arm-2.305.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.305.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.305.0.zip <!-- BEGIN SHA win-x64 -->3a4afe6d9056c7c63ecc17f4db32148e946454f2384427b0a4565b7690ef7420<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.305.0.zip <!-- BEGIN SHA win-arm64 -->ceca238249697e6d1e282448979d868b3a1789012f146d4381739e88653b8b88<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.305.0.tar.gz <!-- BEGIN SHA osx-x64 -->a7c623e013f97db6c73c27288047c1d02ab6964519020ad0e87e69c328e96534<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.305.0.tar.gz <!-- BEGIN SHA osx-arm64 -->a2383a869b99793dee5e1ff7c1df4e7bc86f73521ae03f884f0c7aa43830e2cb<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.305.0.tar.gz <!-- BEGIN SHA linux-x64 -->737bdcef6287a11672d6a5a752d70a7c96b4934de512b7eb283be6f51a563f2f<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.305.0.tar.gz <!-- BEGIN SHA linux-arm64 -->63d7b0ba495055e390ac057dc67d721ed78113990fa837a20b141a75044e152a<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.305.0.tar.gz <!-- BEGIN SHA linux-arm -->5b2b53d9739a4821c32068311bb28f54200dc7404e4785578f88280d11488854<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.305.0-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->1979a1a630859e7388cc6ada179e84aaa7bfebbca81d32f129fa7cecb0d86765<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.305.0-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->a78526f63c8650266d891c96fb833fea639c5aff68726eaf274b637945b8e9a6<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.305.0-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->18289af18d503553d0a417605872fd1264f7a3b829fec1cfac21c5617245d83f<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.305.0-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->08c18dab8fe8f211bdf428deca821832258c68818ed9e7aa6794b3eea6b8144b<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.305.0-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->0b2f50144d2ce13ea5cbec217698e9a638782a80b5b9909e18bae68a3cadbfa5<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.305.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->74f656ed5e42ea6158fa0266d95c19192cb6355aad1866a53c700d07a7762a08<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.305.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->c8ec7f49bf1422c6c755a966ab4c505ef7f47091bc6a1f493b0f96af173610a6<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.305.0-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->a0f1866a26bf37f5fbcb3c67928e49470840cd06eea08abdb0b9aec0a5f762ae<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.305.0-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->d7e8e18a8153ecefe19152eccf6a2460e29f22cb974e99122d58af19ade3c0ed<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.305.0-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->07943a9b86d262ee85767eef5c04fb147df419cd919e5a1f3bb89c8a148c7cb3<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.305.0-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->6465758b138a385b17f6ec39b18050648e286c23b0ba7c165b10af01497b5edd<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.305.0-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->6d8c60dc30f6c298978ebd62af95b14518a68367eb5dbe03a5da0e20f3d56df9<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.305.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->cc632cc632ba084e870ffbcc54d18be02386abf83939d36b83332aeafd1f58cd<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.305.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->100b45840a213a24bbbf8a253a8fc282e26e70fab7d12f82ceaa487b72aff1e4<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.305.0-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->93931e904c8aecdfda23398d45766d873df864d7ced353486d088c8b5a1d0e5b<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.305.0-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->7e4fa63ca9b4442cc6a4e445b93d02f51948aba5978d4cf3264cab0898637d08<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.305.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->ce890dd27f6ae907ff26ed46ed9c77752efbe5b1e57db190c20ee4a563eeffdb<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.305.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->859d9dc38a489aa79d06f196c67377d424552f91590f865bf076ea3cd949f07b<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.305.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->07f9fd4fc7990456085794d8c23126564e6ef24a15b5784c5a0a6111b43bfe73<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.305.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->b09b090e2099632fe24e61930e148cd7742b3389fcadf82f9e75febe83f56ec3<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.305.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->71aad27b97e25efb0af494033fbf9cb009eb6c84472f4611a8371cb3fcfbfb8d<!-- END SHA linux-arm_noruntime_noexternals -->

Apr 26, 2023

Features

  • Runner changes for communication with Results service (#2510, #2531, #2535, #2516)
  • Add *.ghe.localhost domains to hosted server check (#2536)
  • Add OrchestrationId to user-agent for better telemetry correlation. (#2568)

Bugs

  • Fix JIT configurations on Windows (#2497)
  • Guard against NullReference while creating HostContext (#2343)
  • Handles broken symlink in Which (#2150, #2196)
  • Adding curl retry for external tool downloads (#2552, #2557)
  • Limit the time we wait for waiting websocket to connect. (#2554)

Misc

  • Bump container hooks version to 0.3.1 in runner image (#2496)
  • Runner changes to communicate with vNext services (#2487, #2500, #2505, #2541, #2547)

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.304.0/actions-runner-win-x64-2.304.0.zip -OutFile actions-runner-win-x64-2.304.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.304.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.304.0/actions-runner-win-arm64-2.304.0.zip -OutFile actions-runner-win-arm64-2.304.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.304.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.304.0/actions-runner-osx-x64-2.304.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.304.0.tar.gz

OSX arm64 (Apple silicon)

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.304.0/actions-runner-osx-arm64-2.304.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.304.0.tar.gz

Linux x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.304.0/actions-runner-linux-x64-2.304.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.304.0.tar.gz

Linux arm64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.304.0/actions-runner-linux-arm64-2.304.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.304.0.tar.gz

Linux arm

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.304.0/actions-runner-linux-arm-2.304.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.304.0.tar.gz

Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.304.0.zip <!-- BEGIN SHA win-x64 -->fbbddd2f94b195dde46aa6028acfe873351964c502aa9f29bb64e529b789500b<!-- END SHA win-x64 -->

  • actions-runner-win-arm64-2.304.0.zip <!-- BEGIN SHA win-arm64 -->8f11f1240ff97da21efa96649a71b1dd579eaf077bcdbfe532aac56e778ef469<!-- END SHA win-arm64 -->

  • actions-runner-osx-x64-2.304.0.tar.gz <!-- BEGIN SHA osx-x64 -->26dddab8eafc193bb8b27afc5844ff3a6f789a655aca5bf79b018493963681a7<!-- END SHA osx-x64 -->

  • actions-runner-osx-arm64-2.304.0.tar.gz <!-- BEGIN SHA osx-arm64 -->789fc57af2f0819d470fcc447e2970f201cfc8aa1d803d4e5b748ec4c5d10db8<!-- END SHA osx-arm64 -->

  • actions-runner-linux-x64-2.304.0.tar.gz <!-- BEGIN SHA linux-x64 -->292e8770bdeafca135c2c06cd5426f9dda49a775568f45fcc25cc2b576afc12f<!-- END SHA linux-x64 -->

  • actions-runner-linux-arm64-2.304.0.tar.gz <!-- BEGIN SHA linux-arm64 -->34c49bd0e294abce6e4a073627ed60dc2f31eee970c13d389b704697724b31c6<!-- END SHA linux-arm64 -->

  • actions-runner-linux-arm-2.304.0.tar.gz <!-- BEGIN SHA linux-arm -->9b988321757805f0d650574f49808ed7c7b31a691551b205f724e68f5ed9b543<!-- END SHA linux-arm -->

  • actions-runner-win-x64-2.304.0-noexternals.zip <!-- BEGIN SHA win-x64_noexternals -->d8f5b989b87cdc305dfe1d60042e1d9dbfa7171a1b8cef50a32c4318cddc0aec<!-- END SHA win-x64_noexternals -->

  • actions-runner-win-arm64-2.304.0-noexternals.zip <!-- BEGIN SHA win-arm64_noexternals -->9cd2216851572552b1cb73c2b04b42816404e756bf72fa2ae1d2bcdcc35cb05b<!-- END SHA win-arm64_noexternals -->

  • actions-runner-osx-x64-2.304.0-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noexternals -->0b671152926c770f3388db7745181ebc332ac4d172b9c0072085ada1e60170c8<!-- END SHA osx-x64_noexternals -->

  • actions-runner-osx-arm64-2.304.0-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noexternals -->b1158738876eab7bf4b82219d61ad4624482cebe804665d8cd0aed6715b7ef7a<!-- END SHA osx-arm64_noexternals -->

  • actions-runner-linux-x64-2.304.0-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noexternals -->fcdb9fa40bb61fb5572d7fa880ec45fee62c5790edcea54878fb63d8decaa9c3<!-- END SHA linux-x64_noexternals -->

  • actions-runner-linux-arm64-2.304.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noexternals -->af63cd2364acf0be85d0ebd1bf13dfb55bea2e6a57a6001ff8bacff8b1b9724d<!-- END SHA linux-arm64_noexternals -->

  • actions-runner-linux-arm-2.304.0-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noexternals -->615fb4be6b8130256080ac121e717c03ff04ced58b93adf3afbf76b3e0dbe044<!-- END SHA linux-arm_noexternals -->

  • actions-runner-win-x64-2.304.0-noruntime.zip <!-- BEGIN SHA win-x64_noruntime -->c09665369d2b4c5314a3a80721840d0619a83f946796529a421e7de37770c12d<!-- END SHA win-x64_noruntime -->

  • actions-runner-win-arm64-2.304.0-noruntime.zip <!-- BEGIN SHA win-arm64_noruntime -->e5d5233170f45581335e8eaf21b00b96ed70b30cc39a7fd3c25d3c9bd26d6aba<!-- END SHA win-arm64_noruntime -->

  • actions-runner-osx-x64-2.304.0-noruntime.tar.gz <!-- BEGIN SHA osx-x64_noruntime -->c212455d760c8ed5c748dd6fa95a1c35cd1bb5d48de2b2be4a067e22123bc921<!-- END SHA osx-x64_noruntime -->

  • actions-runner-osx-arm64-2.304.0-noruntime.tar.gz <!-- BEGIN SHA osx-arm64_noruntime -->2d539f07492a7cca228f5054b598bc61760e4e4d1c0e79c011f0781ecf6f2e09<!-- END SHA osx-arm64_noruntime -->

  • actions-runner-linux-x64-2.304.0-noruntime.tar.gz <!-- BEGIN SHA linux-x64_noruntime -->a68149267a89bd308ef579c512bf26c0c9eca8db892dbccf295423f2da7ed97c<!-- END SHA linux-x64_noruntime -->

  • actions-runner-linux-arm64-2.304.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm64_noruntime -->bf0b87c51be47f5b4a52ee20b1698202a1417b6679c6adb0f59ef98e76ae9f38<!-- END SHA linux-arm64_noruntime -->

  • actions-runner-linux-arm-2.304.0-noruntime.tar.gz <!-- BEGIN SHA linux-arm_noruntime -->895c36443b34bb05d4ba3c78bdbd9a6eaf1a8ff24e8253d2060c1a41a2bc129e<!-- END SHA linux-arm_noruntime -->

  • actions-runner-win-x64-2.304.0-noruntime-noexternals.zip <!-- BEGIN SHA win-x64_noruntime_noexternals -->8f290aa634da0aeac715e2e075ac4b5e367210b693871d8964262b2653491745<!-- END SHA win-x64_noruntime_noexternals -->

  • actions-runner-win-arm64-2.304.0-noruntime-noexternals.zip <!-- BEGIN SHA win-arm64_noruntime_noexternals -->d28315d1ae4f72a27af6c397a6c2ce6f5a28af1d165526131348aa41aa255c2e<!-- END SHA win-arm64_noruntime_noexternals -->

  • actions-runner-osx-x64-2.304.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-x64_noruntime_noexternals -->0485941b1d8b330255a3dd3415d2f71bf773088fffbc119d91d9c94371b02ab5<!-- END SHA osx-x64_noruntime_noexternals -->

  • actions-runner-osx-arm64-2.304.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA osx-arm64_noruntime_noexternals -->db2d8ee498d92dacc54c6beac32d0c84ea6b00614bedc53290bef8ed74322c55<!-- END SHA osx-arm64_noruntime_noexternals -->

  • actions-runner-linux-x64-2.304.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-x64_noruntime_noexternals -->4b0baaec1612659d1b874abb8436df80856c0d239e2b995a6944b1b7ef77cacf<!-- END SHA linux-x64_noruntime_noexternals -->

  • actions-runner-linux-arm64-2.304.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm64_noruntime_noexternals -->9927347bd5a9da45e6d315b5355a43778c92828abd9798e11afbe1f1064ee076<!-- END SHA linux-arm64_noruntime_noexternals -->

  • actions-runner-linux-arm-2.304.0-noruntime-noexternals.tar.gz <!-- BEGIN SHA linux-arm_noruntime_noexternals -->b0a0b2ab8bf107d3db339181dc33bb5a2f7ff91d84d6541c3d20cdf02ae10a60<!-- END SHA linux-arm_noruntime_noexternals -->

Latest
v2.333.1
Tracking Since
Jul 21, 2021
Last fetched Apr 18, 2026