Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Releases: Quantco/actions-runner

v2.334.0-qc-20260605-164653

05 Jun 14:50
32f636e

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.333.1...v2.334.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.334.0-qc-20260605-164653/actions-runner-win-x64-2.334.0-qc-20260605-164653.zip -OutFile actions-runner-win-x64-2.334.0-qc-20260605-164653.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.334.0-qc-20260605-164653.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.334.0-qc-20260605-164653/actions-runner-win-arm64-2.334.0-qc-20260605-164653.zip -OutFile actions-runner-win-arm64-2.334.0-qc-20260605-164653.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.334.0-qc-20260605-164653.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.334.0-qc-20260605-164653/actions-runner-osx-x64-2.334.0-qc-20260605-164653.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.334.0-qc-20260605-164653.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.334.0-qc-20260605-164653/actions-runner-osx-arm64-2.334.0-qc-20260605-164653.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.334.0-qc-20260605-164653.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.334.0-qc-20260605-164653/actions-runner-linux-x64-2.334.0-qc-20260605-164653.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.334.0-qc-20260605-164653.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.334.0-qc-20260605-164653/actions-runner-linux-arm64-2.334.0-qc-20260605-164653.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.334.0-qc-20260605-164653.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.334.0-qc-20260605-164653/actions-runner-linux-arm-2.334.0-qc-20260605-164653.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.334.0-qc-20260605-164653.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.334.0-qc-20260605-164653.zip 12727ac1d2ce861aa25eb0eb3b89792537bf476595c5ef541cf321bb8e09ae64
  • actions-runner-win-arm64-2.334.0-qc-20260605-164653.zip 012dc34f401b8ddb9beb3c0c7d63a2ba45afc244aa2934016f4ba93e554ad1bf
  • actions-runner-osx-x64-2.334.0-qc-20260605-164653.tar.gz 75853cfe4d43a476187b859df4daf01d9d9521c01bb7d83f5ccf125df81b5f75
  • actions-runner-osx-arm64-2.334.0-qc-20260605-164653.tar.gz ef4d190f46b88604f0a0909c5a5cfc913e89a16c61876ad5d35feb84aba35639
  • actions-runner-linux-x64-2.334.0-qc-20260605-164653.tar.gz 5d974c37acfb7bb6ced37e7e6a24351e9585db06918add65880baf108bdc9f49
  • actions-runner-linux-arm64-2.334.0-qc-20260605-164653.tar.gz c2f738544c2e91b9fad6e8dbcd701d7462dd36527de9851770626bddbab89d7b
  • actions-runner-linux-arm-2.334.0-qc-20260605-164653.tar.gz 7499d03d5d6c3d4ba563b80496e77b29abb0257b6d6c859c6348e1867cd17eaa

v2.334.0-qc-20260505-162744

05 May 14:33
e1c8506

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@v2.333.1...v2.334.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.334.0-qc-20260505-162744/actions-runner-win-x64-2.334.0-qc-20260505-162744.zip -OutFile actions-runner-win-x64-2.334.0-qc-20260505-162744.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.334.0-qc-20260505-162744.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.334.0-qc-20260505-162744/actions-runner-win-arm64-2.334.0-qc-20260505-162744.zip -OutFile actions-runner-win-arm64-2.334.0-qc-20260505-162744.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.334.0-qc-20260505-162744.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.334.0-qc-20260505-162744/actions-runner-osx-x64-2.334.0-qc-20260505-162744.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.334.0-qc-20260505-162744.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.334.0-qc-20260505-162744/actions-runner-osx-arm64-2.334.0-qc-20260505-162744.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.334.0-qc-20260505-162744.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.334.0-qc-20260505-162744/actions-runner-linux-x64-2.334.0-qc-20260505-162744.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.334.0-qc-20260505-162744.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.334.0-qc-20260505-162744/actions-runner-linux-arm64-2.334.0-qc-20260505-162744.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.334.0-qc-20260505-162744.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.334.0-qc-20260505-162744/actions-runner-linux-arm-2.334.0-qc-20260505-162744.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.334.0-qc-20260505-162744.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.334.0-qc-20260505-162744.zip 09b2a704c7ee390985e07ae32966e668a53ae63787170dd31245c49eb31a8c40
  • actions-runner-win-arm64-2.334.0-qc-20260505-162744.zip f64f1d0ae45d33c4e4b79fa7e397977cff4558d2f100962b812db25db05735ee
  • actions-runner-osx-x64-2.334.0-qc-20260505-162744.tar.gz b30fa12a260e7a257e3e1773c51e77311fb13dcde31ee779a03fbcde963df49a
  • actions-runner-osx-arm64-2.334.0-qc-20260505-162744.tar.gz 20aae09097dc51023682174d9ecd6342d749046c9734a2e4b2471d29be60c622
  • actions-runner-linux-x64-2.334.0-qc-20260505-162744.tar.gz 6c962fb90f10fa776da9bfda37a742a8d6c5b34484d6174b691ff6bba27e6f55
  • actions-runner-linux-arm64-2.334.0-qc-20260505-162744.tar.gz d4c4a892251b46351a0d634871c9b4475c882191763b1fe78896c1024da6ab70
  • actions-runner-linux-arm-2.334.0-qc-20260505-162744.tar.gz a7b16499a815e7f4df839d6508de21855a11b1d5e1f1ea1527eb7baf82890ab1

v2.333.0-qc-20260430-120716

30 Apr 10:11
6d0386b

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@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-qc-20260430-120716/actions-runner-win-x64-2.333.0-qc-20260430-120716.zip -OutFile actions-runner-win-x64-2.333.0-qc-20260430-120716.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.333.0-qc-20260430-120716.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-qc-20260430-120716/actions-runner-win-arm64-2.333.0-qc-20260430-120716.zip -OutFile actions-runner-win-arm64-2.333.0-qc-20260430-120716.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.333.0-qc-20260430-120716.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-qc-20260430-120716/actions-runner-osx-x64-2.333.0-qc-20260430-120716.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.333.0-qc-20260430-120716.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-qc-20260430-120716/actions-runner-osx-arm64-2.333.0-qc-20260430-120716.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.333.0-qc-20260430-120716.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-qc-20260430-120716/actions-runner-linux-x64-2.333.0-qc-20260430-120716.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.333.0-qc-20260430-120716.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-qc-20260430-120716/actions-runner-linux-arm64-2.333.0-qc-20260430-120716.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.333.0-qc-20260430-120716.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-qc-20260430-120716/actions-runner-linux-arm-2.333.0-qc-20260430-120716.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.0-qc-20260430-120716.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-qc-20260430-120716.zip 84a52b9b48805b4373ee061982417df4ad1a88cf430bfbcdf7eea8fd45b8dc7b
  • actions-runner-win-arm64-2.333.0-qc-20260430-120716.zip 371a918f7ceb4b82348023f81e6e6096f981bc78158f3023e2f8ee815a459040
  • actions-runner-osx-x64-2.333.0-qc-20260430-120716.tar.gz 3278bbd87f8311cd6f029c9a8c1ab9fd49a0536043f5dfaab9b705a7079ab3ee
  • actions-runner-osx-arm64-2.333.0-qc-20260430-120716.tar.gz cd4b7b4db44ca5636a5b250d8b9ddc66a6a9c098a6a75740a26c820c47734529
  • actions-runner-linux-x64-2.333.0-qc-20260430-120716.tar.gz 11bab38672ea1ad2c98d845187a5eb9630f8a412ba542b3c4d0154d966cd62b0
  • actions-runner-linux-arm64-2.333.0-qc-20260430-120716.tar.gz 363380b4632e95cd3e2daab63ebec512778e460ca3f490f65f1bc77af4f54950
  • actions-runner-linux-arm-2.333.0-qc-20260430-120716.tar.gz f2fadcf3c2524559654c410e9395aa6a4114ffa661559a2403d73780fd1ee9ea

v2.333.0-qc-20260326-130629

26 Mar 12:12

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@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-qc-20260326-130629/actions-runner-win-x64-2.333.0-qc-20260326-130629.zip -OutFile actions-runner-win-x64-2.333.0-qc-20260326-130629.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.333.0-qc-20260326-130629.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-qc-20260326-130629/actions-runner-win-arm64-2.333.0-qc-20260326-130629.zip -OutFile actions-runner-win-arm64-2.333.0-qc-20260326-130629.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.333.0-qc-20260326-130629.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-qc-20260326-130629/actions-runner-osx-x64-2.333.0-qc-20260326-130629.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.333.0-qc-20260326-130629.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-qc-20260326-130629/actions-runner-osx-arm64-2.333.0-qc-20260326-130629.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.333.0-qc-20260326-130629.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-qc-20260326-130629/actions-runner-linux-x64-2.333.0-qc-20260326-130629.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.333.0-qc-20260326-130629.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-qc-20260326-130629/actions-runner-linux-arm64-2.333.0-qc-20260326-130629.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.333.0-qc-20260326-130629.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-qc-20260326-130629/actions-runner-linux-arm-2.333.0-qc-20260326-130629.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.0-qc-20260326-130629.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-qc-20260326-130629.zip e6a8bad05cd3a75a386790aa9b57d9d68c5df8280d368d0591002ae63ba20668
  • actions-runner-win-arm64-2.333.0-qc-20260326-130629.zip 6bdd182074848563a74a74d4a9bde37ac09181785839bc174a1a10e20992b55f
  • actions-runner-osx-x64-2.333.0-qc-20260326-130629.tar.gz d079e20e71c6866b55ce70789eea806310847a0aa8b873654c199ac143c2c59a
  • actions-runner-osx-arm64-2.333.0-qc-20260326-130629.tar.gz c8c297aaab2fbf839fba2199ca59b8aee464b723b39390e71b40f6fd5637a855
  • actions-runner-linux-x64-2.333.0-qc-20260326-130629.tar.gz 2e6d4aa4c5f50acd7f85fdf0bad5e4e376935d66f6278da98d93ad8ecdd7eef8
  • actions-runner-linux-arm64-2.333.0-qc-20260326-130629.tar.gz cc05a23de48afb773361d64afe125066a456e6c473c0563fd8a232f8d0ce6050
  • actions-runner-linux-arm-2.333.0-qc-20260326-130629.tar.gz 5d8f4d339a17234ecf474aa3980cff33db84fbb9c141f5ebfb6e2300c9c6425b

v2.333.0-qc-20260326-000805

25 Mar 23:12

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@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-qc-20260326-000805/actions-runner-win-x64-2.333.0-qc-20260326-000805.zip -OutFile actions-runner-win-x64-2.333.0-qc-20260326-000805.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.333.0-qc-20260326-000805.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-qc-20260326-000805/actions-runner-win-arm64-2.333.0-qc-20260326-000805.zip -OutFile actions-runner-win-arm64-2.333.0-qc-20260326-000805.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.333.0-qc-20260326-000805.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-qc-20260326-000805/actions-runner-osx-x64-2.333.0-qc-20260326-000805.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.333.0-qc-20260326-000805.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-qc-20260326-000805/actions-runner-osx-arm64-2.333.0-qc-20260326-000805.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.333.0-qc-20260326-000805.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-qc-20260326-000805/actions-runner-linux-x64-2.333.0-qc-20260326-000805.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.333.0-qc-20260326-000805.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-qc-20260326-000805/actions-runner-linux-arm64-2.333.0-qc-20260326-000805.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.333.0-qc-20260326-000805.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-qc-20260326-000805/actions-runner-linux-arm-2.333.0-qc-20260326-000805.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.0-qc-20260326-000805.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-qc-20260326-000805.zip cb197d4339f6aa970aa43bd394aa8546635896a7aa2b8c7e1eb6c7e0a9db2ac4
  • actions-runner-win-arm64-2.333.0-qc-20260326-000805.zip 564e42dac5b6e6798477393303b989612ad73830502c352bb3482c6181167d01
  • actions-runner-osx-x64-2.333.0-qc-20260326-000805.tar.gz d3b69e5330b9c12321fcefff679598009fd8d5c3f68c304203c165cd27d60145
  • actions-runner-osx-arm64-2.333.0-qc-20260326-000805.tar.gz 62a1ab1c77b3564ade3e409a9983776851bb0751216d509d1d321b4737268b46
  • actions-runner-linux-x64-2.333.0-qc-20260326-000805.tar.gz 3ee4f149f31a077fdcf02ae9961bbca83860b2dfb034fd3915e4b9404fca6a50
  • actions-runner-linux-arm64-2.333.0-qc-20260326-000805.tar.gz be36c2a91405eb43eaab3ea5eb1c3a081c0dab102d5623232cdf16abfdd2aae0
  • actions-runner-linux-arm-2.333.0-qc-20260326-000805.tar.gz 42da27aa476519a6574c72f37841ac79704b1e48a45b79ceb633311c4c0ef8b1

v2.333.0-qc-20260325-180429

25 Mar 17:11

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@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-qc-20260325-180429/actions-runner-win-x64-2.333.0-qc-20260325-180429.zip -OutFile actions-runner-win-x64-2.333.0-qc-20260325-180429.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.333.0-qc-20260325-180429.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-qc-20260325-180429/actions-runner-win-arm64-2.333.0-qc-20260325-180429.zip -OutFile actions-runner-win-arm64-2.333.0-qc-20260325-180429.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.333.0-qc-20260325-180429.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-qc-20260325-180429/actions-runner-osx-x64-2.333.0-qc-20260325-180429.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.333.0-qc-20260325-180429.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-qc-20260325-180429/actions-runner-osx-arm64-2.333.0-qc-20260325-180429.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.333.0-qc-20260325-180429.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-qc-20260325-180429/actions-runner-linux-x64-2.333.0-qc-20260325-180429.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.333.0-qc-20260325-180429.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-qc-20260325-180429/actions-runner-linux-arm64-2.333.0-qc-20260325-180429.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.333.0-qc-20260325-180429.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-qc-20260325-180429/actions-runner-linux-arm-2.333.0-qc-20260325-180429.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.0-qc-20260325-180429.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-qc-20260325-180429.zip 41f86e171a92ee21951d0e5d186a02501c3a7e0f7dd91ababe5171f0d4c484ad
  • actions-runner-win-arm64-2.333.0-qc-20260325-180429.zip 50ffb64cfa0e98f07241b677815db4e57ac5ff8183b18e051a24e399801ffd3d
  • actions-runner-osx-x64-2.333.0-qc-20260325-180429.tar.gz 329e7d4e18b90be23a72419ab248f775390163122cd87913ae13183cbe6df40e
  • actions-runner-osx-arm64-2.333.0-qc-20260325-180429.tar.gz 211d0605dc8134e2efecc65cf4fa339b1720be7ab60b815f1a3e9398399512fc
  • actions-runner-linux-x64-2.333.0-qc-20260325-180429.tar.gz 41af73fedc5753d65b10a91f794299a2f9bc340249d6bee30dbbe672628500ba
  • actions-runner-linux-arm64-2.333.0-qc-20260325-180429.tar.gz 9f7fb13f2e185e277f26d6352878aa790a8bc513656b1d06cca6bb1c8a0855c7
  • actions-runner-linux-arm-2.333.0-qc-20260325-180429.tar.gz 6190a45da678b712a35e95576a525b857044c714ab910296585e37a660644424

v2.333.0-qc-20260323-212031

23 Mar 20:24
2297c8a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: actions/runner@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-qc-20260323-212031/actions-runner-win-x64-2.333.0-qc-20260323-212031.zip -OutFile actions-runner-win-x64-2.333.0-qc-20260323-212031.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.333.0-qc-20260323-212031.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-qc-20260323-212031/actions-runner-win-arm64-2.333.0-qc-20260323-212031.zip -OutFile actions-runner-win-arm64-2.333.0-qc-20260323-212031.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.333.0-qc-20260323-212031.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-qc-20260323-212031/actions-runner-osx-x64-2.333.0-qc-20260323-212031.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.333.0-qc-20260323-212031.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-qc-20260323-212031/actions-runner-osx-arm64-2.333.0-qc-20260323-212031.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.333.0-qc-20260323-212031.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-qc-20260323-212031/actions-runner-linux-x64-2.333.0-qc-20260323-212031.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.333.0-qc-20260323-212031.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-qc-20260323-212031/actions-runner-linux-arm64-2.333.0-qc-20260323-212031.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.333.0-qc-20260323-212031.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-qc-20260323-212031/actions-runner-linux-arm-2.333.0-qc-20260323-212031.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.0-qc-20260323-212031.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-qc-20260323-212031.zip fa1833abd3aada573f57d206320c9917f10f758c25cbe469ac93877b34c0b839
  • actions-runner-win-arm64-2.333.0-qc-20260323-212031.zip 16ed3f8b3a912e54d5cb45b40197c52bde5ae6a510e31e95dcbb29e4bab9a73e
  • actions-runner-osx-x64-2.333.0-qc-20260323-212031.tar.gz 6dc6050792f0c88c31c12cdbd95dd097b5c628b2a2743a3fefd48e9eaba9142b
  • actions-runner-osx-arm64-2.333.0-qc-20260323-212031.tar.gz 7ce1eafb6b579682d9facac1676458af6b779c772eacd394dc35052ababbe6d3
  • actions-runner-linux-x64-2.333.0-qc-20260323-212031.tar.gz 725cdd4043defce12a7867516006e08fd4d1df680fa71a7159536fbaabf8abf1
  • actions-runner-linux-arm64-2.333.0-qc-20260323-212031.tar.gz 3d2e4de5017d189818a96855c2378b62065bb8cee0a5f7c7c3e5d00b831bc386
  • actions-runner-linux-arm-2.333.0-qc-20260323-212031.tar.gz f7411c0f17061491daaa5dd981dafc30aa28ffb1e2f7e3488293423212518c57