Releases: Quantco/actions-runner
v2.334.0-qc-20260605-164653
What's Changed
- Bump flatted from 3.2.7 to 3.4.2 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4307
- Add DAP server by Francesco Renzi (@rentziass) in actions#4298
- Bump @typescript-eslint/eslint-plugin from 8.57.1 to 8.57.2 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4310
- Remove AllowCaseFunction feature flag by eric sciple (@ericsciple) in actions#4316
- chore: update Node versions by @github-actions[bot] in actions#4319
- Batch and deduplicate action resolution across composite depths by Stefan Penner (@stefanpenner) in actions#4296
- Add support for Bearer token in action archive downloads by Tingluo Huang (@TingluoHuang) in actions#4321
- Bump brace-expansion in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4318
- Add devtunnel connection for debugger jobs by Francesco Renzi (@rentziass) in actions#4317
- Update Docker to v29.3.1 and Buildx to v0.33.0 by @github-actions[bot] in actions#4324
- Bump @typescript-eslint/eslint-plugin from 8.57.2 to 8.58.1 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4327
- Bump actions/github-script from 8 to 9 by Dependabot (@dependabot)[bot] in actions#4331
- Bump typescript from 5.9.3 to 6.0.2 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4329
- fix: only show changed versions in node upgrade PR description by Salman Chishti (@salmanmkc) in actions#4332
- Bump System.Formats.Asn1, Cryptography.Pkcs, ProtectedData, ServiceController, CodePages, Threading.Channels, @actions/glob, @typescript-eslint/parser, lint-staged, picomatch by @Copilot in actions#4333
- feat: add
job.workflow_*typed accessors to JobContext by Salman Chishti (@salmanmkc) in actions#4335 - Add WS bridge over DAP TCP server by Francesco Renzi (@rentziass) in actions#4328
- chore: update Node versions by @github-actions[bot] in actions#4355
- Bump Docker version to 29.4.0 by @Copilot in actions#4352
- Update dotnet sdk to latest version @8.0.420 by @github-actions[bot] in actions#4356
- Bump @typescript-eslint/parser from 8.58.1 to 8.59.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4360
- Bump System.Formats.Asn1 and System.Security.Cryptography.Pkcs by Dependabot (@dependabot)[bot] in actions#4362
- Add vulnerability-alerts permission by Salman Chishti (@salmanmkc) in actions#4350
- Bump @typescript-eslint/eslint-plugin from 8.58.1 to 8.59.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4359
- Bump System.ServiceProcess.ServiceController from 10.0.3 to 10.0.6 by Dependabot (@dependabot)[bot] in actions#4358
- Bump typescript from 6.0.2 to 6.0.3 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4353
- Bump Microsoft.DevTunnels.Connections from 1.3.16 to 1.3.39 by Dependabot (@dependabot)[bot] in actions#4339
New Contributors
- Stefan Penner (@stefanpenner) made their first contribution in actions#4296
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.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.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
What's Changed
- Bump flatted from 3.2.7 to 3.4.2 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4307
- Add DAP server by Francesco Renzi (@rentziass) in actions#4298
- Bump @typescript-eslint/eslint-plugin from 8.57.1 to 8.57.2 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4310
- Remove AllowCaseFunction feature flag by eric sciple (@ericsciple) in actions#4316
- chore: update Node versions by @github-actions[bot] in actions#4319
- Batch and deduplicate action resolution across composite depths by Stefan Penner (@stefanpenner) in actions#4296
- Add support for Bearer token in action archive downloads by Tingluo Huang (@TingluoHuang) in actions#4321
- Bump brace-expansion in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4318
- Add devtunnel connection for debugger jobs by Francesco Renzi (@rentziass) in actions#4317
- Update Docker to v29.3.1 and Buildx to v0.33.0 by @github-actions[bot] in actions#4324
- Bump @typescript-eslint/eslint-plugin from 8.57.2 to 8.58.1 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4327
- Bump actions/github-script from 8 to 9 by Dependabot (@dependabot)[bot] in actions#4331
- Bump typescript from 5.9.3 to 6.0.2 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4329
- fix: only show changed versions in node upgrade PR description by Salman Chishti (@salmanmkc) in actions#4332
- Bump System.Formats.Asn1, Cryptography.Pkcs, ProtectedData, ServiceController, CodePages, Threading.Channels, @actions/glob, @typescript-eslint/parser, lint-staged, picomatch by @Copilot in actions#4333
- feat: add
job.workflow_*typed accessors to JobContext by Salman Chishti (@salmanmkc) in actions#4335 - Add WS bridge over DAP TCP server by Francesco Renzi (@rentziass) in actions#4328
- chore: update Node versions by @github-actions[bot] in actions#4355
- Bump Docker version to 29.4.0 by @Copilot in actions#4352
- Update dotnet sdk to latest version @8.0.420 by @github-actions[bot] in actions#4356
- Bump @typescript-eslint/parser from 8.58.1 to 8.59.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4360
- Bump System.Formats.Asn1 and System.Security.Cryptography.Pkcs by Dependabot (@dependabot)[bot] in actions#4362
- Add vulnerability-alerts permission by Salman Chishti (@salmanmkc) in actions#4350
- Bump @typescript-eslint/eslint-plugin from 8.58.1 to 8.59.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4359
- Bump System.ServiceProcess.ServiceController from 10.0.3 to 10.0.6 by Dependabot (@dependabot)[bot] in actions#4358
- Bump typescript from 6.0.2 to 6.0.3 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4353
- Bump Microsoft.DevTunnels.Connections from 1.3.16 to 1.3.39 by Dependabot (@dependabot)[bot] in actions#4339
New Contributors
- Stefan Penner (@stefanpenner) made their first contribution in actions#4296
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.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.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
What's Changed
- Log inner exception message. by Tingluo Huang (@TingluoHuang) in actions#4265
- Fix composite post-step marker display names by eric sciple (@ericsciple) in actions#4267
- Bump actions/download-artifact from 7 to 8 by Dependabot (@dependabot)[bot] in actions#4269
- chore: update Node versions by @github-actions[bot] in actions#4272
- Avoid throw in SelfUpdaters. by Tingluo Huang (@TingluoHuang) in actions#4274
- Fix parser comparison mismatches by eric sciple (@ericsciple) in actions#4273
- Devcontainer: bump base image Ubuntu version by Max Horstmann (@MaxHorstmann) in actions#4277
- Support
entrypointandcommandfor service containers by eric sciple (@ericsciple) in actions#4276 - Bump actions/upload-artifact from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4270
- Bump docker/login-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4278
- Fix positional arg bug in ExpressionParser.CreateTree by eric sciple (@ericsciple) in actions#4279
- Bump docker/build-push-action from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4283
- Bump docker/setup-buildx-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4282
- Bump actions/attest-build-provenance from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4266
- Bump @stylistic/eslint-plugin from 5.9.0 to 5.10.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4281
- Update Docker to v29.3.0 and Buildx to v0.32.1 by @github-actions[bot] in actions#4286
- chore: update Node versions by @github-actions[bot] in actions#4287
- Fix cancellation token race during parser comparison by eric sciple (@ericsciple) in actions#4280
- Bump @typescript-eslint/eslint-plugin from 8.47.0 to 8.54.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4230
- Exit with specified exit code when runner is outdated by Nikola Jokic (@nikola-jokic) in actions#4285
- Report infra_error for action download failures. by Tingluo Huang (@TingluoHuang) in actions#4294
- Update dotnet sdk to latest version @8.0.419 by @github-actions[bot] in actions#4301
- Node 24 enforcement + Linux ARM32 deprecation support by Salman Chishti (@salmanmkc) in actions#4303
- Bump @typescript-eslint/eslint-plugin from 8.54.0 to 8.57.1 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4304
New Contributors
- Max Horstmann (@MaxHorstmann) made their first contribution in actions#4277
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.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.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
What's Changed
- Log inner exception message. by Tingluo Huang (@TingluoHuang) in actions#4265
- Fix composite post-step marker display names by eric sciple (@ericsciple) in actions#4267
- Bump actions/download-artifact from 7 to 8 by Dependabot (@dependabot)[bot] in actions#4269
- chore: update Node versions by @github-actions[bot] in actions#4272
- Avoid throw in SelfUpdaters. by Tingluo Huang (@TingluoHuang) in actions#4274
- Fix parser comparison mismatches by eric sciple (@ericsciple) in actions#4273
- Devcontainer: bump base image Ubuntu version by Max Horstmann (@MaxHorstmann) in actions#4277
- Support
entrypointandcommandfor service containers by eric sciple (@ericsciple) in actions#4276 - Bump actions/upload-artifact from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4270
- Bump docker/login-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4278
- Fix positional arg bug in ExpressionParser.CreateTree by eric sciple (@ericsciple) in actions#4279
- Bump docker/build-push-action from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4283
- Bump docker/setup-buildx-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4282
- Bump actions/attest-build-provenance from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4266
- Bump @stylistic/eslint-plugin from 5.9.0 to 5.10.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4281
- Update Docker to v29.3.0 and Buildx to v0.32.1 by @github-actions[bot] in actions#4286
- chore: update Node versions by @github-actions[bot] in actions#4287
- Fix cancellation token race during parser comparison by eric sciple (@ericsciple) in actions#4280
- Bump @typescript-eslint/eslint-plugin from 8.47.0 to 8.54.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4230
- Exit with specified exit code when runner is outdated by Nikola Jokic (@nikola-jokic) in actions#4285
- Report infra_error for action download failures. by Tingluo Huang (@TingluoHuang) in actions#4294
- Update dotnet sdk to latest version @8.0.419 by @github-actions[bot] in actions#4301
- Node 24 enforcement + Linux ARM32 deprecation support by Salman Chishti (@salmanmkc) in actions#4303
- Bump @typescript-eslint/eslint-plugin from 8.54.0 to 8.57.1 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4304
New Contributors
- Max Horstmann (@MaxHorstmann) made their first contribution in actions#4277
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.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.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
What's Changed
- Log inner exception message. by Tingluo Huang (@TingluoHuang) in actions#4265
- Fix composite post-step marker display names by eric sciple (@ericsciple) in actions#4267
- Bump actions/download-artifact from 7 to 8 by Dependabot (@dependabot)[bot] in actions#4269
- chore: update Node versions by @github-actions[bot] in actions#4272
- Avoid throw in SelfUpdaters. by Tingluo Huang (@TingluoHuang) in actions#4274
- Fix parser comparison mismatches by eric sciple (@ericsciple) in actions#4273
- Devcontainer: bump base image Ubuntu version by Max Horstmann (@MaxHorstmann) in actions#4277
- Support
entrypointandcommandfor service containers by eric sciple (@ericsciple) in actions#4276 - Bump actions/upload-artifact from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4270
- Bump docker/login-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4278
- Fix positional arg bug in ExpressionParser.CreateTree by eric sciple (@ericsciple) in actions#4279
- Bump docker/build-push-action from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4283
- Bump docker/setup-buildx-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4282
- Bump actions/attest-build-provenance from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4266
- Bump @stylistic/eslint-plugin from 5.9.0 to 5.10.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4281
- Update Docker to v29.3.0 and Buildx to v0.32.1 by @github-actions[bot] in actions#4286
- chore: update Node versions by @github-actions[bot] in actions#4287
- Fix cancellation token race during parser comparison by eric sciple (@ericsciple) in actions#4280
- Bump @typescript-eslint/eslint-plugin from 8.47.0 to 8.54.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4230
- Exit with specified exit code when runner is outdated by Nikola Jokic (@nikola-jokic) in actions#4285
- Report infra_error for action download failures. by Tingluo Huang (@TingluoHuang) in actions#4294
- Update dotnet sdk to latest version @8.0.419 by @github-actions[bot] in actions#4301
- Node 24 enforcement + Linux ARM32 deprecation support by Salman Chishti (@salmanmkc) in actions#4303
- Bump @typescript-eslint/eslint-plugin from 8.54.0 to 8.57.1 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4304
New Contributors
- Max Horstmann (@MaxHorstmann) made their first contribution in actions#4277
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.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.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
What's Changed
- Log inner exception message. by Tingluo Huang (@TingluoHuang) in actions#4265
- Fix composite post-step marker display names by eric sciple (@ericsciple) in actions#4267
- Bump actions/download-artifact from 7 to 8 by Dependabot (@dependabot)[bot] in actions#4269
- chore: update Node versions by @github-actions[bot] in actions#4272
- Avoid throw in SelfUpdaters. by Tingluo Huang (@TingluoHuang) in actions#4274
- Fix parser comparison mismatches by eric sciple (@ericsciple) in actions#4273
- Devcontainer: bump base image Ubuntu version by Max Horstmann (@MaxHorstmann) in actions#4277
- Support
entrypointandcommandfor service containers by eric sciple (@ericsciple) in actions#4276 - Bump actions/upload-artifact from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4270
- Bump docker/login-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4278
- Fix positional arg bug in ExpressionParser.CreateTree by eric sciple (@ericsciple) in actions#4279
- Bump docker/build-push-action from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4283
- Bump docker/setup-buildx-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4282
- Bump actions/attest-build-provenance from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4266
- Bump @stylistic/eslint-plugin from 5.9.0 to 5.10.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4281
- Update Docker to v29.3.0 and Buildx to v0.32.1 by @github-actions[bot] in actions#4286
- chore: update Node versions by @github-actions[bot] in actions#4287
- Fix cancellation token race during parser comparison by eric sciple (@ericsciple) in actions#4280
- Bump @typescript-eslint/eslint-plugin from 8.47.0 to 8.54.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4230
- Exit with specified exit code when runner is outdated by Nikola Jokic (@nikola-jokic) in actions#4285
- Report infra_error for action download failures. by Tingluo Huang (@TingluoHuang) in actions#4294
- Update dotnet sdk to latest version @8.0.419 by @github-actions[bot] in actions#4301
- Node 24 enforcement + Linux ARM32 deprecation support by Salman Chishti (@salmanmkc) in actions#4303
- Bump @typescript-eslint/eslint-plugin from 8.54.0 to 8.57.1 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4304
New Contributors
- Max Horstmann (@MaxHorstmann) made their first contribution in actions#4277
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.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.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
What's Changed
- Log inner exception message. by Tingluo Huang (@TingluoHuang) in actions#4265
- Fix composite post-step marker display names by eric sciple (@ericsciple) in actions#4267
- Bump actions/download-artifact from 7 to 8 by Dependabot (@dependabot)[bot] in actions#4269
- chore: update Node versions by @github-actions[bot] in actions#4272
- Avoid throw in SelfUpdaters. by Tingluo Huang (@TingluoHuang) in actions#4274
- Fix parser comparison mismatches by eric sciple (@ericsciple) in actions#4273
- Devcontainer: bump base image Ubuntu version by Max Horstmann (@MaxHorstmann) in actions#4277
- Support
entrypointandcommandfor service containers by eric sciple (@ericsciple) in actions#4276 - Bump actions/upload-artifact from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4270
- Bump docker/login-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4278
- Fix positional arg bug in ExpressionParser.CreateTree by eric sciple (@ericsciple) in actions#4279
- Bump docker/build-push-action from 6 to 7 by Dependabot (@dependabot)[bot] in actions#4283
- Bump docker/setup-buildx-action from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4282
- Bump actions/attest-build-provenance from 3 to 4 by Dependabot (@dependabot)[bot] in actions#4266
- Bump @stylistic/eslint-plugin from 5.9.0 to 5.10.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4281
- Update Docker to v29.3.0 and Buildx to v0.32.1 by @github-actions[bot] in actions#4286
- chore: update Node versions by @github-actions[bot] in actions#4287
- Fix cancellation token race during parser comparison by eric sciple (@ericsciple) in actions#4280
- Bump @typescript-eslint/eslint-plugin from 8.47.0 to 8.54.0 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4230
- Exit with specified exit code when runner is outdated by Nikola Jokic (@nikola-jokic) in actions#4285
- Report infra_error for action download failures. by Tingluo Huang (@TingluoHuang) in actions#4294
- Update dotnet sdk to latest version @8.0.419 by @github-actions[bot] in actions#4301
- Node 24 enforcement + Linux ARM32 deprecation support by Salman Chishti (@salmanmkc) in actions#4303
- Bump @typescript-eslint/eslint-plugin from 8.54.0 to 8.57.1 in /src/Misc/expressionFunc/hashFiles by Dependabot (@dependabot)[bot] in actions#4304
New Contributors
- Max Horstmann (@MaxHorstmann) made their first contribution in actions#4277
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.gzOSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux x64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm64
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzLinux arm
# Create a folder
mkdir actions-runner && cd actions-runner
# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.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.gzUsing your self hosted runner
For additional details about configuring, running, or shutting down the runner please check out our product docs.
SHA-256 Checksums
The SHA-256 checksums for the packages included in this build are shown below:
- actions-runner-win-x64-2.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