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
Mar 27, 2026

What's Changed

Full Changelog: https://github.com/actions/runner/compare/v2.333.0...v2.333.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.333.1/actions-runner-win-x64-2.333.1.zip -OutFile actions-runner-win-x64-2.333.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.333.1.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.333.1/actions-runner-win-arm64-2.333.1.zip -OutFile actions-runner-win-arm64-2.333.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.333.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.333.1/actions-runner-osx-x64-2.333.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.333.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.333.1/actions-runner-osx-arm64-2.333.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.333.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.333.1/actions-runner-linux-x64-2.333.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.333.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.333.1/actions-runner-linux-arm64-2.333.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.333.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.333.1/actions-runner-linux-arm-2.333.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.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.333.1.zip <!-- BEGIN SHA win-x64 -->d0c4fcb91f8f0754d478db5d61db533bba14cad6c4676a9b93c0b7c2a3969aa0<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.333.1.zip <!-- BEGIN SHA win-arm64 -->c665c4ce2bf1d79e1ce49051d91a9e84822a19891ceb442bdaae9fb0d82eb642<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.333.1.tar.gz <!-- BEGIN SHA osx-x64 -->e3be55b41452befae65ae032c10df4d8cc6a1926514ef837c45a04f18d11d9d9<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.333.1.tar.gz <!-- BEGIN SHA osx-arm64 -->69d8c30aff69592fd0e3da6db1a477506ae5942cd438967f098bbdbc4e954c90<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.333.1.tar.gz <!-- BEGIN SHA linux-x64 -->18f8f68ed1892854ff2ab1bab4fcaa2f5abeedc98093b6cb13638991725cab74<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.333.1.tar.gz <!-- BEGIN SHA linux-arm64 -->69ac7e5692f877189e7dddf4a1bb16cbbd6425568cd69a0359895fac48b9ad3b<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.333.1.tar.gz <!-- BEGIN SHA linux-arm -->26d89c7b08685ab6aa9155e062ad60a3f63cb571b7510eadbc723b2f7e4c9f8b<!-- END SHA linux-arm -->
Mar 18, 2026

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.332.0...v2.333.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.333.0/actions-runner-win-x64-2.333.0.zip -OutFile actions-runner-win-x64-2.333.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.333.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.333.0/actions-runner-win-arm64-2.333.0.zip -OutFile actions-runner-win-arm64-2.333.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.333.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.333.0/actions-runner-osx-x64-2.333.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.333.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.333.0/actions-runner-osx-arm64-2.333.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.333.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.333.0/actions-runner-linux-x64-2.333.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.333.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.333.0/actions-runner-linux-arm64-2.333.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.333.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.333.0/actions-runner-linux-arm-2.333.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.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.333.0.zip <!-- BEGIN SHA win-x64 -->7176d0c4b674d4108b515503a53b4bc9eeab9339c645e274a97c142fe1c64b95<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.333.0.zip <!-- BEGIN SHA win-arm64 -->a84e324e0c46b983a5eeb517260aee14e4fbb13968371f7b269da62c8639186d<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.333.0.tar.gz <!-- BEGIN SHA osx-x64 -->2b0ba7df7be9b9c36b4b86c19539b3a8be027ce926610b71606a6e445197094b<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.333.0.tar.gz <!-- BEGIN SHA osx-arm64 -->d92ea082bede9616120800b0e4a09f1aa209c922ade05d59bc3ee7c4de56f73c<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.333.0.tar.gz <!-- BEGIN SHA linux-x64 -->7ce6b3fd8f879797fcc252c2918a23e14a233413dc6e6ab8e0ba8768b5d54475<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.333.0.tar.gz <!-- BEGIN SHA linux-arm64 -->b5697062a13f63b44f869de9369638a7039677b9e0f87e47a6001a758c0d09bf<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.333.0.tar.gz <!-- BEGIN SHA linux-arm -->370383a927b3fb61f5b892e0f87eda277b6826eec3dbd17d320f8a472560cec8<!-- END SHA linux-arm -->
Feb 25, 2026

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.331.0...v2.332.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.332.0/actions-runner-win-x64-2.332.0.zip -OutFile actions-runner-win-x64-2.332.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.332.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.332.0/actions-runner-win-arm64-2.332.0.zip -OutFile actions-runner-win-arm64-2.332.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.332.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.332.0/actions-runner-osx-x64-2.332.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.332.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.332.0/actions-runner-osx-arm64-2.332.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.332.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.332.0/actions-runner-linux-x64-2.332.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.332.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.332.0/actions-runner-linux-arm64-2.332.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.332.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.332.0/actions-runner-linux-arm-2.332.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.332.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.332.0.zip <!-- BEGIN SHA win-x64 -->83e56e05b21eb58c9697f82e52c53b30867335ff039cd5d44d1a1a24d2149f4b<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.332.0.zip <!-- BEGIN SHA win-arm64 -->e7dced5dcf8e8492ec24eb16446047ddccecdb55625f9f6738a96fa9da1bd7f6<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.332.0.tar.gz <!-- BEGIN SHA osx-x64 -->99755a4f48d81da8d6a59bad6a3216a49394f41d2c842c39f921a1592d7d0733<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.332.0.tar.gz <!-- BEGIN SHA osx-arm64 -->d53bedb30619a64e751bb9f729cc9e9b35eb1df5361651d54daae00db33f2e73<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.332.0.tar.gz <!-- BEGIN SHA linux-x64 -->f2094522a6b9afeab07ffb586d1eb3f190b6457074282796c497ce7dce9e0f2a<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.332.0.tar.gz <!-- BEGIN SHA linux-arm64 -->b72f0599cdbd99dd9513ab64fcb59e424fc7359c93b849e8f5efdd5a72f743a6<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.332.0.tar.gz <!-- BEGIN SHA linux-arm -->84ac6dda50f941c7bc4952a20af0c4147caa96bdb2cb2494e7a5eb630d63753b<!-- END SHA linux-arm -->
Jan 9, 2026

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.330.0...v2.331.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.331.0/actions-runner-win-x64-2.331.0.zip -OutFile actions-runner-win-x64-2.331.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.331.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.331.0/actions-runner-win-arm64-2.331.0.zip -OutFile actions-runner-win-arm64-2.331.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.331.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.331.0/actions-runner-osx-x64-2.331.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.331.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.331.0/actions-runner-osx-arm64-2.331.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.331.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.331.0/actions-runner-linux-x64-2.331.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.331.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.331.0/actions-runner-linux-arm64-2.331.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.331.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.331.0/actions-runner-linux-arm-2.331.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.331.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.331.0.zip <!-- BEGIN SHA win-x64 -->473e74b86cd826e073f1c1f2c004d3fb9e6c9665d0d51710a23e5084a601c78a<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.331.0.zip <!-- BEGIN SHA win-arm64 -->12ac57b6e00acb308e3b53f1d34e81af64461084672630a41b9cfc05f6dc0ca2<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.331.0.tar.gz <!-- BEGIN SHA osx-x64 -->0bcba2dd55eb429620f3184cebaa2e403e99dbf2b621e5858203c3aca3900878<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.331.0.tar.gz <!-- BEGIN SHA osx-arm64 -->6f56ce368b09041f83c5ded4d0fb83b08d9a28e22300a2ce5cb1ed64e67ea47c<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.331.0.tar.gz <!-- BEGIN SHA linux-x64 -->5fcc01bd546ba5c3f1291c2803658ebd3cedb3836489eda3be357d41bfcf28a7<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.331.0.tar.gz <!-- BEGIN SHA linux-arm64 -->f5863a211241436186723159a111f352f25d5d22711639761ea24c98caef1a9a<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.331.0.tar.gz <!-- BEGIN SHA linux-arm -->f233d41c2080d9c8ae7533857c4ff6a3d3d7102632ce441fc400e0339c5b76cc<!-- END SHA linux-arm -->
Nov 19, 2025

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.329.0...v2.330.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.330.0/actions-runner-win-x64-2.330.0.zip -OutFile actions-runner-win-x64-2.330.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.330.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-win-arm64-2.330.0.zip -OutFile actions-runner-win-arm64-2.330.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.330.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.330.0/actions-runner-osx-x64-2.330.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.330.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.330.0/actions-runner-osx-arm64-2.330.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.330.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.330.0/actions-runner-linux-x64-2.330.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.330.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.330.0/actions-runner-linux-arm64-2.330.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.330.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.330.0/actions-runner-linux-arm-2.330.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.330.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.330.0.zip <!-- BEGIN SHA win-x64 -->a7469e7f2949657327fdd75688fd8858e1352202847d024d68b93de033990779<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.330.0.zip <!-- BEGIN SHA win-arm64 -->d6b713c83263e2498931488079a3a20770d4a205a47fac51da86026e45754596<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.330.0.tar.gz <!-- BEGIN SHA osx-x64 -->40a32b7b87e25b76b595e201e0af376fcb1c3b7838fe21452909756090473ea9<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.330.0.tar.gz <!-- BEGIN SHA osx-arm64 -->e7515e45f6de15e37e6f1667bb2f962fb535a86689af1f9b219860300d06de1b<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.330.0.tar.gz <!-- BEGIN SHA linux-x64 -->af5c33fa94f3cc33b8e97937939136a6b04197e6dadfcfb3b6e33ae1bf41e79a<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.330.0.tar.gz <!-- BEGIN SHA linux-arm64 -->9cb43527912086c7c8fb4119cb06409fcbcbd6f93a2d8507f30b07c495620f5c<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.330.0.tar.gz <!-- BEGIN SHA linux-arm -->2bb261a52054e08cbfe899a47e7a8ce97267eb73bc30282cc718d2620b320f6a<!-- END SHA linux-arm -->
Oct 14, 2025

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.328.0...v2.329.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-win-x64-2.329.0.zip -OutFile actions-runner-win-x64-2.329.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.329.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-win-arm64-2.329.0.zip -OutFile actions-runner-win-arm64-2.329.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.329.0.zip", "$PWD")

OSX x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.329.0/actions-runner-osx-x64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.329.0.tar.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.329.0/actions-runner-osx-arm64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.329.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.329.0/actions-runner-linux-x64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.329.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.329.0/actions-runner-linux-arm64-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.329.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.329.0/actions-runner-linux-arm-2.329.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.329.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.329.0.zip <!-- BEGIN SHA win-x64 -->f60be5ddf373c52fd735388c3478536afd12bfd36d1d0777c6b855b758e70f25<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.329.0.zip <!-- BEGIN SHA win-arm64 -->68c38a172b569ba7290136f3051e28aca4e1a0a3d40e68ec352d100907c2e927<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.329.0.tar.gz <!-- BEGIN SHA osx-x64 -->c5a14e84b358c72ca83bf14518e004a8ad195cc440322fbca2a4fec7649035c7<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.329.0.tar.gz <!-- BEGIN SHA osx-arm64 -->50c0d409040cc52e701ac1d5afb4672cb7803a65c1292a30e96c42051dfa690f<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.329.0.tar.gz <!-- BEGIN SHA linux-x64 -->194f1e1e4bd02f80b7e9633fc546084d8d4e19f3928a324d512ea53430102e1d<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.329.0.tar.gz <!-- BEGIN SHA linux-arm64 -->56768348b3d643a6a29d4ad71e9bdae0dc0ef1eb01afe0f7a8ee097b039bfaaf<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.329.0.tar.gz <!-- BEGIN SHA linux-arm -->b958284b8af869bd6d3542210fbd23702449182ba1c2b1b1eef575913434f13a<!-- END SHA linux-arm -->
Aug 13, 2025

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.327.1...v2.328.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-win-x64-2.328.0.zip -OutFile actions-runner-win-x64-2.328.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.328.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-win-arm64-2.328.0.zip -OutFile actions-runner-win-arm64-2.328.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.328.0.zip", "$PWD")

OSX x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.328.0/actions-runner-osx-x64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.328.0.tar.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.328.0/actions-runner-osx-arm64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.328.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.328.0/actions-runner-linux-x64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.328.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.328.0/actions-runner-linux-arm64-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.328.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.328.0/actions-runner-linux-arm-2.328.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.328.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.328.0.zip <!-- BEGIN SHA win-x64 -->a73ae192b8b2b782e1d90c08923030930b0b96ed394fe56413a073cc6f694877<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.328.0.zip <!-- BEGIN SHA win-arm64 -->4635a32df9bf26df153dd139d14ae393860d489628259aac480f177c6aad53c9<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.328.0.tar.gz <!-- BEGIN SHA osx-x64 -->90c32dc6f292855339563148f3859dc5d402f237ecdf57010c841df3c8d12cc8<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.328.0.tar.gz <!-- BEGIN SHA osx-arm64 -->30e8c9e34ae3f1f5004d0fd6eb4e42714d1b489ca9c91f5eed3bcbd29c6f446d<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.328.0.tar.gz <!-- BEGIN SHA linux-x64 -->01066fad3a2893e63e6ca880ae3a1fad5bf9329d60e77ee15f2b97c148c3cd4e<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.328.0.tar.gz <!-- BEGIN SHA linux-arm64 -->b801b9809c4d9301932bccadf57ca13533073b2aa9fa9b8e625a8db905b5d8eb<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.328.0.tar.gz <!-- BEGIN SHA linux-arm -->530bb83124f38edc9b410fbcc0a8b0baeaa336a14e3707acc8ca308fe0cb7540<!-- END SHA linux-arm -->
Jul 25, 2025

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.326.0...v2.327.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-win-x64-2.327.1.zip -OutFile actions-runner-win-x64-2.327.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.327.1.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-win-arm64-2.327.1.zip -OutFile actions-runner-win-arm64-2.327.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.327.1.zip", "$PWD")

OSX x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.327.1/actions-runner-osx-x64-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.327.1.tar.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.327.1/actions-runner-osx-arm64-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.327.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.327.1/actions-runner-linux-x64-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.327.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.327.1/actions-runner-linux-arm64-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.327.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.327.1/actions-runner-linux-arm-2.327.1.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.327.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.327.1.zip <!-- BEGIN SHA win-x64 -->7179db618e7f79e0ce63d96b15f3b6cf6e69996b2094f7f02208b7786c50b6a3<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.327.1.zip <!-- BEGIN SHA win-arm64 -->615ccbbe4880f9c09ee2878431b100e62cfced000e9b3a0886a8130335e13e5d<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.327.1.tar.gz <!-- BEGIN SHA osx-x64 -->a0cb80fb6baacf5c669ccd5c2f64429033a7b4dac1e020b4231a4fc5ff396b76<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.327.1.tar.gz <!-- BEGIN SHA osx-arm64 -->807f875f4a357a9c919b484329c072e885ef2c041a18d3107cf1a1e5932eecc0<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.327.1.tar.gz <!-- BEGIN SHA linux-x64 -->d68ac1f500b747d1271d9e52661c408d56cffd226974f68b7dc813e30b9e0575<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.327.1.tar.gz <!-- BEGIN SHA linux-arm64 -->16102096988246f250a745c6a813a5a0b8901e2f554f9440c97e8573fd4da111<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.327.1.tar.gz <!-- BEGIN SHA linux-arm -->b6f34af6d11f5f023fe23aa8bcb01f392eaad30d70e1e31f4e68bbdbb315eda8<!-- END SHA linux-arm -->
Jul 22, 2025

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.326.0...v2.327.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.327.0/actions-runner-win-x64-2.327.0.zip -OutFile actions-runner-win-x64-2.327.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.327.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.327.0/actions-runner-win-arm64-2.327.0.zip -OutFile actions-runner-win-arm64-2.327.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.327.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.327.0/actions-runner-osx-x64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.327.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.327.0/actions-runner-osx-arm64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.327.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.327.0/actions-runner-linux-x64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.327.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.327.0/actions-runner-linux-arm64-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.327.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.327.0/actions-runner-linux-arm-2.327.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.327.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.327.0.zip <!-- BEGIN SHA win-x64 -->98588fe278e68b8988ea4fad7d0233a4544592b5d2ee09ed8f73f9a0c86d0190<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.327.0.zip <!-- BEGIN SHA win-arm64 -->efcc44a40ce612ee3b0d4928a9325df3689911d59559d20b3902434399b65bac<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.327.0.tar.gz <!-- BEGIN SHA osx-x64 -->2e9f16999a83f39969186e76abb2ba726c04e11dc98986de7d9e494fe0236d0f<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.327.0.tar.gz <!-- BEGIN SHA osx-arm64 -->dd0753890663023646d7c9739f9fd2b4b85dadbdc023bfacc688dda8fa7b16f5<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.327.0.tar.gz <!-- BEGIN SHA linux-x64 -->697deac53b39b72396c6fe3fe3b10bdc05cf59c12e82295a2e6decc53ca7d3e4<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.327.0.tar.gz <!-- BEGIN SHA linux-arm64 -->5d41da47727514b3ee77974362171582b791f600b2a4e74b2fe3decb52f8d0c1<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.327.0.tar.gz <!-- BEGIN SHA linux-arm -->f73583e4b80917ba84977eeae2fa9c09b030cde97461f71e5414deba5291a8dd<!-- END SHA linux-arm -->
Jul 7, 2025

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.325.0...v2.326.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-win-x64-2.326.0.zip -OutFile actions-runner-win-x64-2.326.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.326.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-win-arm64-2.326.0.zip -OutFile actions-runner-win-arm64-2.326.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.326.0.zip", "$PWD")

OSX x64

# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.326.0/actions-runner-osx-x64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.326.0.tar.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.326.0/actions-runner-osx-arm64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.326.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.326.0/actions-runner-linux-x64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.326.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.326.0/actions-runner-linux-arm64-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.326.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.326.0/actions-runner-linux-arm-2.326.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.326.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.326.0.zip <!-- BEGIN SHA win-x64 -->539d48815f8ecda6903755025d5b578f919a32692b731d85a9a24419fe4dbd9e<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.326.0.zip <!-- BEGIN SHA win-arm64 -->c6f837fbfce536b4bbb934201947956dfcdb34960e9f986c82bb963ff0890724<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.326.0.tar.gz <!-- BEGIN SHA osx-x64 -->9e8c7fed970d7b19c224873dbdded39c0480af72a68c094096b3b36a9ba31c4f<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.326.0.tar.gz <!-- BEGIN SHA osx-arm64 -->5399a02b5cfb98293aa7057cee917dcbd08d612fcb6960d1a8fdd4aacdf7f56f<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.326.0.tar.gz <!-- BEGIN SHA linux-x64 -->9c74af9b4352bbc99aecc7353b47bcdfcd1b2a0f6d15af54a99f54a0c14a1de8<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.326.0.tar.gz <!-- BEGIN SHA linux-arm64 -->ee7c229c979c5152e9f12be16ee9e83ff74c9d9b95c3c1aeb2e9b6d07157ec85<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.326.0.tar.gz <!-- BEGIN SHA linux-arm -->e71a8e88b0ad4d05e315a42de9aef13ed3eb7a8ac37f4693cbeaba4ac353ff30<!-- END SHA linux-arm -->
Jun 2, 2025

What's Changed

Full Changelog: https://github.com/actions/runner/compare/v2.324.0...v2.325.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-win-x64-2.325.0.zip -OutFile actions-runner-win-x64-2.325.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.325.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.325.0/actions-runner-win-arm64-2.325.0.zip -OutFile actions-runner-win-arm64-2.325.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.325.0.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.325.0.zip <!-- BEGIN SHA win-x64 -->8601aa56828c084b29bdfda574af1fcde0943ce275fdbafb3e6d4a8611245b1b<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.325.0.zip <!-- BEGIN SHA win-arm64 -->bc57c7bd5c07310481654bc8516fd42000a9bc0f2e2f8e588b6ea46c3391eb45<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.325.0.tar.gz <!-- BEGIN SHA osx-x64 -->0562bd934b27ca0c6d8a357df00809fbc7b4d5524d4aeb6ec152e14fd520a4c3<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.325.0.tar.gz <!-- BEGIN SHA osx-arm64 -->155cc00c217bdc3a74f1c0534e8e3bde1a2d9e2186f01f68a9dec185628fe749<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.325.0.tar.gz <!-- BEGIN SHA linux-x64 -->5020da7139d85c776059f351e0de8fdec753affc9c558e892472d43ebeb518f4<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.325.0.tar.gz <!-- BEGIN SHA linux-arm64 -->0e916ad0d354089d320011c132d46bdbe3353c8b925a2e1056c7c8e85d2f2490<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.325.0.tar.gz <!-- BEGIN SHA linux-arm -->f74f77c6437c6de3d2921e4b26a6e2e31c21cbdeb309f86648d1f4e5fa0c3eca<!-- END SHA linux-arm -->
May 13, 2025

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.323.0...v2.324.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-win-x64-2.324.0.zip -OutFile actions-runner-win-x64-2.324.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.324.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.324.0/actions-runner-win-arm64-2.324.0.zip -OutFile actions-runner-win-arm64-2.324.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.324.0.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.324.0.zip <!-- BEGIN SHA win-x64 -->78b70ddc65e0c2f1940195859e453bdfaa098fe3475cf89bc9378614d2adc197<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.324.0.zip <!-- BEGIN SHA win-arm64 -->43479570319c7091132d362e1d518a38bba1e37494b14b47d3b85c176f869f82<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.324.0.tar.gz <!-- BEGIN SHA osx-x64 -->fbf97cc843c480f0104e2a3d2b1bda86ca467c88da666ac76e432caa2748c683<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.324.0.tar.gz <!-- BEGIN SHA osx-arm64 -->ea3e592d93afd0d71c5e355c15f98ee7cb21cf5ea0ac39f55bf21c661f1915ef<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.324.0.tar.gz <!-- BEGIN SHA linux-x64 -->e8e24a3477da17040b4d6fa6d34c6ecb9a2879e800aa532518ec21e49e21d7b4<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.324.0.tar.gz <!-- BEGIN SHA linux-arm64 -->b5a5cf1138064afd0f0fb1a4a493adaa9bff5485ace3575e99547f004dbb20fa<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.324.0.tar.gz <!-- BEGIN SHA linux-arm -->947784560c2dfc750a83dd7f94861244b9deb0e97cb3f3e68f79507bd0ce8e5c<!-- END SHA linux-arm -->
Mar 19, 2025

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.322.0...v2.323.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.323.0/actions-runner-win-x64-2.323.0.zip -OutFile actions-runner-win-x64-2.323.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.323.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.323.0/actions-runner-win-arm64-2.323.0.zip -OutFile actions-runner-win-arm64-2.323.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.323.0.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.323.0.zip <!-- BEGIN SHA win-x64 -->e8ca92e3b1b907cdcc0c94640f4c5b23f377743993a4a5c859cb74f3e6eb33ef<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.323.0.zip <!-- BEGIN SHA win-arm64 -->b48a9a0bb5539b1827af9516675cad1b8db453bd9fcd1427e02502f7c84d0e97<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.323.0.tar.gz <!-- BEGIN SHA osx-x64 -->5dd3f423e8f387a47ac53a5e355e0fe105f0a9314d7823dea098dca70e1bd2c9<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.323.0.tar.gz <!-- BEGIN SHA osx-arm64 -->845f98d74a3eab5d0bb80517b08bfd1fb162eec5d8f302e175addc4153b35f29<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.323.0.tar.gz <!-- BEGIN SHA linux-x64 -->0dbc9bf5a58620fc52cb6cc0448abcca964a8d74b5f39773b7afcad9ab691e19<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.323.0.tar.gz <!-- BEGIN SHA linux-arm64 -->9cb778fffd4c6d8bd74bc4110df7cb8c0122eb62fda30b389318b265d3ade538<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.323.0.tar.gz <!-- BEGIN SHA linux-arm -->e3bbb53d4d97859fc1c5cfd9da2a5501686041cbda7c0bb94185e2cde0e9ff1b<!-- END SHA linux-arm -->
Feb 26, 2025

What's Changed

Full Changelog: https://github.com/actions/runner/compare/v2.320.0...v2.320.1

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.320.1/actions-runner-win-x64-2.320.1.zip -OutFile actions-runner-win-x64-2.320.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.320.1.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.320.1/actions-runner-win-arm64-2.320.1.zip -OutFile actions-runner-win-arm64-2.320.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.320.1.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.320.1.zip <!-- BEGIN SHA win-x64 -->2255911ff39327c8d41d61479fcba0f15ff2fa9621e0f27a107183842c482399<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.320.1.zip <!-- BEGIN SHA win-arm64 -->f650209088ce95ec0c3dc101fcbb40bf91bc953d6148a3dada10ca41828cb2fd<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.320.1.tar.gz <!-- BEGIN SHA osx-x64 -->482551b048500f08e461c7ca4ec52d817c3e830451d12c2fd1d6a3414aca3073<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.320.1.tar.gz <!-- BEGIN SHA osx-arm64 -->68bf9b8d5740ee6395e2acf46ad11a19b761545be19e5b37a47b5eb76d116c10<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.320.1.tar.gz <!-- BEGIN SHA linux-x64 -->e22b55a9a7b67e7056f6df063bdc026e02fcb7a4b34419978b29861b1b70e697<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.320.1.tar.gz <!-- BEGIN SHA linux-arm64 -->a2f224e560bdeaf3fddac088ebaead7f46e8ed4db9aa92358b52e00ea7604ee3<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.320.1.tar.gz <!-- BEGIN SHA linux-arm -->3e281dd9eaf505b6fc38830a8b6948ea821c687218e746e56c7a28ee4a4ff992<!-- END SHA linux-arm -->
Jan 24, 2025

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.321.0...v2.322.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.322.0/actions-runner-win-x64-2.322.0.zip -OutFile actions-runner-win-x64-2.322.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.322.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.322.0/actions-runner-win-arm64-2.322.0.zip -OutFile actions-runner-win-arm64-2.322.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.322.0.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.322.0.zip <!-- BEGIN SHA win-x64 -->ace5de018c88492ca80a2323af53ff3f43d2c82741853efb302928f250516015<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.322.0.zip <!-- BEGIN SHA win-arm64 -->74b67df4e94e3cd7d79b9320d421b0a62c66b77a019cf2471aba793dac0139fb<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.322.0.tar.gz <!-- BEGIN SHA osx-x64 -->aa0fc262363912167dcdbc746ffcdf7b8996bc587f51cf1bab38ad86cf70b6ea<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.322.0.tar.gz <!-- BEGIN SHA osx-arm64 -->67d3b4dd6f1eec8ec43dda12c189cff68ec3ba1dfa054791cb446ddcfb39d2aa<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.322.0.tar.gz <!-- BEGIN SHA linux-x64 -->b13b784808359f31bc79b08a191f5f83757852957dd8fe3dbfcc38202ccf5768<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.322.0.tar.gz <!-- BEGIN SHA linux-arm64 -->a96b0cec7b0237ca5e4210982368c6f7d8c2ab1e5f6b2604c1ccede9cedcb143<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.322.0.tar.gz <!-- BEGIN SHA linux-arm -->583fc5f933eb2f0f9f388ef304085629181cef54e63fe3445eed92dba4a87c46<!-- END SHA linux-arm -->
Nov 13, 2024

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.320.0...v2.321.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-win-x64-2.321.0.zip -OutFile actions-runner-win-x64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.321.0.zip", "$PWD")

Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.321.0/actions-runner-win-arm64-2.321.0.zip -OutFile actions-runner-win-arm64-2.321.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.321.0.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.321.0.zip <!-- BEGIN SHA win-x64 -->88d754da46f4053aec9007d172020c1b75ab2e2049c08aef759b643316580bbc<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.321.0.zip <!-- BEGIN SHA win-arm64 -->22df5a32a65a55e43dab38a200d4f72be0f9f5ce1839f5ad34e689a0d3ff0fb7<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.321.0.tar.gz <!-- BEGIN SHA osx-x64 -->b2c91416b3e4d579ae69fc2c381fc50dbda13f1b3fcc283187e2c75d1b173072<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.321.0.tar.gz <!-- BEGIN SHA osx-arm64 -->fbee07e42a134645d4f04f8146b0a3d0b3c948f0d6b2b9fa61f4318c1192ff79<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.321.0.tar.gz <!-- BEGIN SHA linux-x64 -->ba46ba7ce3a4d7236b16fbe44419fb453bc08f866b24f04d549ec89f1722a29e<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.321.0.tar.gz <!-- BEGIN SHA linux-arm64 -->62cc5735d63057d8d07441507c3d6974e90c1854bdb33e9c8b26c0da086336e1<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.321.0.tar.gz <!-- BEGIN SHA linux-arm -->2b96a4991ebf2b2076908a527a1a13db590217f9375267b5dd95f0300dde432b<!-- END SHA linux-arm -->
Oct 3, 2024

What's Changed

Full Changelog: https://github.com/actions/runner/compare/v2.319.1...v2.320.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.320.0/actions-runner-win-x64-2.320.0.zip -OutFile actions-runner-win-x64-2.320.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.320.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.320.0/actions-runner-win-arm64-2.320.0.zip -OutFile actions-runner-win-arm64-2.320.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.320.0.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.320.0.zip <!-- BEGIN SHA win-x64 -->9eb133e8cb25e8319f1cbef3578c9ec5428a7af7c6ec0202ba6f9a9fddf663c0<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.320.0.zip <!-- BEGIN SHA win-arm64 -->b92e6ce0facde2e7cedd502bb1b2ff99cebdb9c99caf77c65192986b8411e267<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.320.0.tar.gz <!-- BEGIN SHA osx-x64 -->11e610adc1c3721a806d2a439d03d143cceeda7a63e794bfe75b45da55e308df<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.320.0.tar.gz <!-- BEGIN SHA osx-arm64 -->14e2600c07ad76a1c9f6d9e498edf14f1c63f7f7f8d55de0653e450f64caa854<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.320.0.tar.gz <!-- BEGIN SHA linux-x64 -->93ac1b7ce743ee85b5d386f5c1787385ef07b3d7c728ff66ce0d3813d5f46900<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.320.0.tar.gz <!-- BEGIN SHA linux-arm64 -->bec1832fe6d2ed75acf4b7d8f2ce1169239a913b84ab1ded028076c9fa5091b8<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.320.0.tar.gz <!-- BEGIN SHA linux-arm -->b2212dbceeea27daf3c90441352851b2d1afcb736a76c2435a715c21daaa6f18<!-- END SHA linux-arm -->
Aug 13, 2024

What's Changed

Full Changelog: https://github.com/actions/runner/compare/v2.319.0...v2.319.1

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.319.1/actions-runner-win-x64-2.319.1.zip -OutFile actions-runner-win-x64-2.319.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.319.1.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.319.1/actions-runner-win-arm64-2.319.1.zip -OutFile actions-runner-win-arm64-2.319.1.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.319.1.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.319.1.zip <!-- BEGIN SHA win-x64 -->1c78c51d20b817fb639e0b0ab564cf0469d083ad543ca3d0d7a2cdad5723f3a7<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.319.1.zip <!-- BEGIN SHA win-arm64 -->3d25e7ddbad0104a5db94cf13bd1ebd06c4e991999dd84fac007b31851421e90<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.319.1.tar.gz <!-- BEGIN SHA osx-x64 -->e0987bc1c2b71e732a0e7963a8a6de64fe3be2a282122c23c52b83d7cebfafdb<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.319.1.tar.gz <!-- BEGIN SHA osx-arm64 -->af6a2fba35cc63415693ebfb969b4d7a9d59158e1f3587daf498d0df534bf56f<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.319.1.tar.gz <!-- BEGIN SHA linux-x64 -->3f6efb7488a183e291fc2c62876e14c9ee732864173734facc85a1bfb1744464<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.319.1.tar.gz <!-- BEGIN SHA linux-arm64 -->03d993c65e0c4daa5e3bf5a5a35ba356f363bdb5ceb6b5808fd52fdb813dd8e8<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.319.1.tar.gz <!-- BEGIN SHA linux-arm -->513065cd485ea3b8b445ae4e7aae95960cc094527ecf954310e819c81f7c21e2<!-- END SHA linux-arm -->
Aug 8, 2024

What's Changed

Full Changelog: https://github.com/actions/runner/compare/v2.318.0...v2.319.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.319.0/actions-runner-win-x64-2.319.0.zip -OutFile actions-runner-win-x64-2.319.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.319.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.319.0/actions-runner-win-arm64-2.319.0.zip -OutFile actions-runner-win-arm64-2.319.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.319.0.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.319.0.zip <!-- BEGIN SHA win-x64 -->932d8e01a95ee687df876e6db8cf0466393821cd079fc0f463501a02f23fed5e<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.319.0.zip <!-- BEGIN SHA win-arm64 -->50bb8a472d43d516934fb4c28dd2f806b186998121b372bfa0986970e325f294<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.319.0.tar.gz <!-- BEGIN SHA osx-x64 -->551bb83c896ebc3cd7608db378e667085d8b499f5e32ef44dc68c19d25ede8ca<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.319.0.tar.gz <!-- BEGIN SHA osx-arm64 -->5910ce70e5736df22e987bde6b047170948b2bdf3d0581277b177d3ca3f3c9d5<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.319.0.tar.gz <!-- BEGIN SHA linux-x64 -->52b8f9c5abb1a47cc506185a1a20ecea19daf0d94bbf4ddde7e617e7be109b14<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.319.0.tar.gz <!-- BEGIN SHA linux-arm64 -->524e75dc384ba8289fcea4914eb210f10c8c4e143213cef7d28f0c84dd2d017c<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.319.0.tar.gz <!-- BEGIN SHA linux-arm -->078dcda7233fbb428a07cb16a50fea315d333040e40d3917171d5a2d51d168d1<!-- END SHA linux-arm -->
Jul 26, 2024

What's Changed

Full Changelog: https://github.com/actions/runner/compare/v2.317.0...v2.318.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet. To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository. See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.318.0/actions-runner-win-x64-2.318.0.zip -OutFile actions-runner-win-x64-2.318.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.318.0.zip", "$PWD")

[Pre-release] Windows arm64

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner
# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.318.0/actions-runner-win-arm64-2.318.0.zip -OutFile actions-runner-win-arm64-2.318.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.318.0.zip", "$PWD")

OSX x64

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

OSX arm64 (Apple silicon)

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

Linux x64

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

Linux arm64

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

Linux arm

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

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.318.0.zip <!-- BEGIN SHA win-x64 -->35e41033097bda057333718fd0a923650c505ed214437f89328b6c07dc25b45d<!-- END SHA win-x64 -->
  • actions-runner-win-arm64-2.318.0.zip <!-- BEGIN SHA win-arm64 -->56263cd9002c4b38d649cd6772cc5873e6df1c537c58af58b72cd7a5873b4ae3<!-- END SHA win-arm64 -->
  • actions-runner-osx-x64-2.318.0.tar.gz <!-- BEGIN SHA osx-x64 -->d5d5ae1138595063958ceb6141bb30fdfb63afe6a9859dee29f0fa56474bd386<!-- END SHA osx-x64 -->
  • actions-runner-osx-arm64-2.318.0.tar.gz <!-- BEGIN SHA osx-arm64 -->52c8b7200587e0d461e61657a20db2b798ef3c88e41ff1ee435b770cd648b41e<!-- END SHA osx-arm64 -->
  • actions-runner-linux-x64-2.318.0.tar.gz <!-- BEGIN SHA linux-x64 -->28ed88e4cedf0fc93201a901e392a70463dbd0213f2ce9d57a4ab495027f3e2f<!-- END SHA linux-x64 -->
  • actions-runner-linux-arm64-2.318.0.tar.gz <!-- BEGIN SHA linux-arm64 -->c4d03f1fdfc74e4e29cc403917be2bb24a714740bd250401fba5a4670e2c6070<!-- END SHA linux-arm64 -->
  • actions-runner-linux-arm-2.318.0.tar.gz <!-- BEGIN SHA linux-arm -->34e95530fc31c3678ead5a423414103fdf7513ed245268e6e741c94c55e653a1<!-- END SHA linux-arm -->
Previous123Next
Latest
v2.333.1
Tracking Since
Jul 21, 2021
Last fetched Apr 18, 2026