Skip to content

runner

v2.334.0 Breaking

This release includes 1 breaking change for platform teams planning a safe upgrade.

Published 1mo Pipelines
✓ No known CVEs patched
Read the diff → Tool health → What is this tool? →

✓ No known CVEs patched in this version

Summary

AI summary

Adds Debug Adapter Protocol server for debugging support.

Full changelog

What's Changed

  • Bump flatted from 3.2.7 to 3.4.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in https://github.com/actions/runner/pull/4307
  • Add DAP server by @rentziass in https://github.com/actions/runner/pull/4298
  • Bump @typescript-eslint/eslint-plugin from 8.57.1 to 8.57.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in https://github.com/actions/runner/pull/4310
  • Remove AllowCaseFunction feature flag by @ericsciple in https://github.com/actions/runner/pull/4316
  • chore: update Node versions by @github-actions[bot] in https://github.com/actions/runner/pull/4319
  • Batch and deduplicate action resolution across composite depths by @stefanpenner in https://github.com/actions/runner/pull/4296
  • Add support for Bearer token in action archive downloads by @TingluoHuang in https://github.com/actions/runner/pull/4321
  • Bump brace-expansion in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in https://github.com/actions/runner/pull/4318
  • Add devtunnel connection for debugger jobs by @rentziass in https://github.com/actions/runner/pull/4317
  • Update Docker to v29.3.1 and Buildx to v0.33.0 by @github-actions[bot] in https://github.com/actions/runner/pull/4324
  • Bump @typescript-eslint/eslint-plugin from 8.57.2 to 8.58.1 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in https://github.com/actions/runner/pull/4327
  • Bump actions/github-script from 8 to 9 by @dependabot[bot] in https://github.com/actions/runner/pull/4331
  • Bump typescript from 5.9.3 to 6.0.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in https://github.com/actions/runner/pull/4329
  • fix: only show changed versions in node upgrade PR description by @salmanmkc in https://github.com/actions/runner/pull/4332
  • Bump System.Formats.Asn1, Cryptography.Pkcs, ProtectedData, ServiceController, CodePages, Threading.Channels, @actions/glob, @typescript-eslint/parser, lint-staged, picomatch by @Copilot in https://github.com/actions/runner/pull/4333
  • feat: add job.workflow_* typed accessors to JobContext by @salmanmkc in https://github.com/actions/runner/pull/4335
  • Add WS bridge over DAP TCP server by @rentziass in https://github.com/actions/runner/pull/4328
  • chore: update Node versions by @github-actions[bot] in https://github.com/actions/runner/pull/4355
  • Bump Docker version to 29.4.0 by @Copilot in https://github.com/actions/runner/pull/4352
  • Update dotnet sdk to latest version @8.0.420 by @github-actions[bot] in https://github.com/actions/runner/pull/4356
  • Bump @typescript-eslint/parser from 8.58.1 to 8.59.0 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in https://github.com/actions/runner/pull/4360
  • Bump System.Formats.Asn1 and System.Security.Cryptography.Pkcs by @dependabot[bot] in https://github.com/actions/runner/pull/4362
  • Add vulnerability-alerts permission by @salmanmkc in https://github.com/actions/runner/pull/4350
  • Bump @typescript-eslint/eslint-plugin from 8.58.1 to 8.59.0 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in https://github.com/actions/runner/pull/4359
  • Bump System.ServiceProcess.ServiceController from 10.0.3 to 10.0.6 by @dependabot[bot] in https://github.com/actions/runner/pull/4358
  • Bump typescript from 6.0.2 to 6.0.3 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in https://github.com/actions/runner/pull/4353
  • Bump Microsoft.DevTunnels.Connections from 1.3.16 to 1.3.39 by @dependabot[bot] in https://github.com/actions/runner/pull/4339

New Contributors

  • @stefanpenner made their first contribution in https://github.com/actions/runner/pull/4296

Full Changelog: https://github.com/actions/runner/compare/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/actions-runner-win-x64-2.334.0.zip -OutFile actions-runner-win-x64-2.334.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.334.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.334.0/actions-runner-win-arm64-2.334.0.zip -OutFile actions-runner-win-arm64-2.334.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.334.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.334.0/actions-runner-osx-x64-2.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-2.334.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.334.0/actions-runner-osx-arm64-2.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.334.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.334.0/actions-runner-linux-x64-2.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-2.334.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.334.0/actions-runner-linux-arm64-2.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.334.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.334.0/actions-runner-linux-arm-2.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-2.334.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.334.0.zip a0c896f3acf37841cc17f392a38111d39501e56f2990434567f027ee89cf8981
  • actions-runner-win-arm64-2.334.0.zip 904ae95a96c6a596bd0f6abccebe715f0825f775a84842439a122e63b33dd1bc
  • actions-runner-osx-x64-2.334.0.tar.gz 73a979ff7e9ce8a70244f3a959d896870be486fac92bb08ed90684f961474e0d
  • actions-runner-osx-arm64-2.334.0.tar.gz 760899b29fd4e942076bcd1160a662bf83c15d9ce8a8cc466763aec7e582b21b
  • actions-runner-linux-x64-2.334.0.tar.gz 048024cd2c848eb6f14d5646d56c13a4def2ae7ee3ad12122bee960c56f3d271
  • actions-runner-linux-arm64-2.334.0.tar.gz f44255bd3e80160eb25f71bc83d06ea025f6908748807a584687b3184759f7e4
  • actions-runner-linux-arm-2.334.0.tar.gz 84a25196caf971d0c634e32864731e773e1668235f799666fc0ec40ac666a0ab

Breaking Changes

  • Removed AllowCaseFunction feature flag

Weekly OSS security release digest.

The CVE patches and breaking changes that affected production tools this week. One email, every Sunday.

No spam, unsubscribe anytime.

Share this release

Track runner

Get notified when new releases ship.

Sign up free

About runner

The Runner for GitHub Actions :rocket

All releases →

Related context

Beta — feedback welcome: [email protected]