Releases: mevanlc/actions-runner
Release list
v12.335.0
What's Changed
- Bump System.ServiceProcess.ServiceController from 10.0.6 to 10.0.7 by @dependabot[bot] in actions#4370
- Bump @actions/glob from 0.6.1 to 0.7.0 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4367
- feat: propagate actions dependencies by @nodeselector in actions#4372
- Not retry and report action download 403. by @TingluoHuang in actions#4391
- Update setup job starting logs by @GitPaulo in actions#4383
- fix: expand commit hash regex to support SHA-256 (64-char) hashes by @yaananth in actions#4347
- Move dap setup to setup job step by @rentziass in actions#4403
- Add support for Ubuntu 26.04 (liblttng-ust1t64, libicu77-80) by @dvaldivia in actions#4394
- Update dotnet sdk to latest version @8.0.421 by @github-actions[bot] in actions#4428
- Update Docker to v29.5.0 and Buildx to v0.34.0 by @github-actions[bot] in actions#4425
- Execute debugger REPL commands inside job container by @rentziass in actions#4420
- Send welcome message in debugger console on connect by @rentziass in actions#4419
- Update snapshot-if context and functions by @drielenr in actions#4443
- chore: update Node versions by @github-actions[bot] in actions#4452
- Allow disable node v8 maglev jit compiler on node24. by @TingluoHuang in actions#4447
- Update Node 24 default date to June 16th, 2026 by @salmanmkc in actions#4462
- Populate telemetry for non-action post-job steps by @drielenr in actions#4463
- Add SDK types and results plumbing for background step control by @lokesh755 in actions#4472
- Add job execution view model by @rentziass in actions#4470
- Add thread-safety locks to StepsContext by @lokesh755 in actions#4475
- Add background step deferral infrastructure and metadata plumbing by @lokesh755 in actions#4479
- Wire job execution view into DAP by @rentziass in actions#4471
- Background steps execution engine by @lokesh755 in actions#4476
- Update Docker to v29.5.2 and Buildx to v0.34.1 by @github-actions[bot] in actions#4451
- BrokerServer should not retry on 401. by @TingluoHuang in actions#4445
- Add new env var to allow single-prefix multiline logs on stdout by @nuclearpidgeon in actions#4424
- Bump Microsoft.DevTunnels.Connections from 1.3.39 to 1.3.48 by @dependabot[bot] in actions#4441
- Bump System.Formats.Asn1 and System.Security.Cryptography.Pkcs by @dependabot[bot] in actions#4369
New Contributors
- @GitPaulo made their first contribution in actions#4383
- @dvaldivia made their first contribution in actions#4394
- @drielenr made their first contribution in actions#4443
- @nuclearpidgeon made their first contribution in actions#4424
Full Changelog: actions/runner@v2.334.0...v2.335.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:
# Windows x64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-win-x64-12.335.0.zip -OutFile actions-runner-win-x64-12.335.0.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-12.335.0.zip", "$PWD")# Windows arm64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-win-arm64-12.335.0.zip -OutFile actions-runner-win-arm64-12.335.0.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-12.335.0.zip", "$PWD")# OSX x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-osx-x64-12.335.0.tar.gz
tar xzf ./actions-runner-osx-x64-12.335.0.tar.gz# OSX arm64 (Apple silicon)
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-osx-arm64-12.335.0.tar.gz
tar xzf ./actions-runner-osx-arm64-12.335.0.tar.gz# Linux x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-linux-x64-12.335.0.tar.gz
tar xzf ./actions-runner-linux-x64-12.335.0.tar.gz# Linux arm64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-linux-arm64-12.335.0.tar.gz
tar xzf ./actions-runner-linux-arm64-12.335.0.tar.gz# Linux arm
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.335.0/actions-runner-linux-arm-12.335.0.tar.gz
tar xzf ./actions-runner-linux-arm-12.335.0.tar.gzv12.334.2
# Windows x64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-win-x64-12.334.2.zip -OutFile actions-runner-win-x64-12.334.2.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-12.334.2.zip", "$PWD")# Windows arm64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-win-arm64-12.334.2.zip -OutFile actions-runner-win-arm64-12.334.2.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-12.334.2.zip", "$PWD")# OSX x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-osx-x64-12.334.2.tar.gz
tar xzf ./actions-runner-osx-x64-12.334.2.tar.gz# OSX arm64 (Apple silicon)
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-osx-arm64-12.334.2.tar.gz
tar xzf ./actions-runner-osx-arm64-12.334.2.tar.gz# Linux x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-linux-x64-12.334.2.tar.gz
tar xzf ./actions-runner-linux-x64-12.334.2.tar.gz# Linux arm64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-linux-arm64-12.334.2.tar.gz
tar xzf ./actions-runner-linux-arm64-12.334.2.tar.gz# Linux arm
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.2/actions-runner-linux-arm-12.334.2.tar.gz
tar xzf ./actions-runner-linux-arm-12.334.2.tar.gzv12.334.1
# Windows x64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-win-x64-12.334.1.zip -OutFile actions-runner-win-x64-12.334.1.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-12.334.1.zip", "$PWD")# Windows arm64
mkdir \actions-runner ; cd \actions-runner
Invoke-WebRequest -Uri https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-win-arm64-12.334.1.zip -OutFile actions-runner-win-arm64-12.334.1.zip
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-12.334.1.zip", "$PWD")# OSX x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-osx-x64-12.334.1.tar.gz
tar xzf ./actions-runner-osx-x64-12.334.1.tar.gz# OSX arm64 (Apple silicon)
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-osx-arm64-12.334.1.tar.gz
tar xzf ./actions-runner-osx-arm64-12.334.1.tar.gz# Linux x64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-linux-x64-12.334.1.tar.gz
tar xzf ./actions-runner-linux-x64-12.334.1.tar.gz# Linux arm64
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-linux-arm64-12.334.1.tar.gz
tar xzf ./actions-runner-linux-arm64-12.334.1.tar.gz# Linux arm
mkdir actions-runner && cd actions-runner
curl -O -L https://github.com/mevanlc/actions-runner/releases/download/v12.334.1/actions-runner-linux-arm-12.334.1.tar.gz
tar xzf ./actions-runner-linux-arm-12.334.1.tar.gzv12.334.0
What's Changed
- Bump flatted from 3.2.7 to 3.4.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4307
- Add DAP server by @rentziass in actions#4298
- Bump @typescript-eslint/eslint-plugin from 8.57.1 to 8.57.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4310
- Remove AllowCaseFunction feature flag by @ericsciple in actions#4316
- chore: update Node versions by @github-actions[bot] in actions#4319
- Batch and deduplicate action resolution across composite depths by @stefanpenner in actions#4296
- Add support for Bearer token in action archive downloads by @TingluoHuang in actions#4321
- Bump brace-expansion in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4318
- Add devtunnel connection for debugger jobs by @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[bot] in actions#4327
- Bump actions/github-script from 8 to 9 by @dependabot[bot] in actions#4331
- Bump typescript from 5.9.3 to 6.0.2 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4329
- fix: only show changed versions in node upgrade PR description by @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 @salmanmkc in actions#4335 - Add WS bridge over DAP TCP server by @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[bot] in actions#4360
- Bump System.Formats.Asn1 and System.Security.Cryptography.Pkcs by @dependabot[bot] in actions#4362
- Add vulnerability-alerts permission by @salmanmkc in actions#4350
- Bump @typescript-eslint/eslint-plugin from 8.58.1 to 8.59.0 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4359
- Bump System.ServiceProcess.ServiceController from 10.0.3 to 10.0.6 by @dependabot[bot] in actions#4358
- Bump typescript from 6.0.2 to 6.0.3 in /src/Misc/expressionFunc/hashFiles by @dependabot[bot] in actions#4353
- Bump Microsoft.DevTunnels.Connections from 1.3.16 to 1.3.39 by @dependabot[bot] in actions#4339
New Contributors
- @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/v12.334.0/actions-runner-win-x64-12.334.0.zip -OutFile actions-runner-win-x64-12.334.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-12.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/v12.334.0/actions-runner-win-arm64-12.334.0.zip -OutFile actions-runner-win-arm64-12.334.0.zip
# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-12.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/v12.334.0/actions-runner-osx-x64-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-x64-12.334.0.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/v12.334.0/actions-runner-osx-arm64-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-osx-arm64-12.334.0.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/v12.334.0/actions-runner-linux-x64-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-x64-12.334.0.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/v12.334.0/actions-runner-linux-arm64-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm64-12.334.0.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/v12.334.0/actions-runner-linux-arm-12.334.0.tar.gz
# Extract the installer
tar xzf ./actions-runner-linux-arm-12.334.0.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-12.334.0.zip 218b43ff988305ac2bf22b855ec13551d1aa74e7da98098a49fd792fb70d4793
- actions-runner-win-arm64-12.334.0.zip cd9dc15847e3b51eb1d489e822740fa489f603af2c1f567c8af0bfb37303e526
- actions-runner-osx-x64-12.334.0.tar.gz b0f324d70726d1e6a98da0c97b467d75f70f0a85dab06599b09d9a13b10647a7
- actions-runner-osx-arm64-12.334.0.tar.gz cdf098adaf087711ecd888f256fd156e2d2438bdf8c3e823caac2e9df012b97b
- actions-runner-linux-x64-12.334.0.tar.gz 584cab85dc4681d06870c718a513637ae60b00c8ea27a323fcb97928585f46f1
- actions-runner-linux-arm64-12.334.0.tar.gz e85fd88041fc2e4b645caa491cab8f5bc97b116ecb85ac5647bd0032bf80112c
- actions-runner-linux-arm-12.334.0.tar.gz e303da8f9f5dfc302dcd04dc21c04e7977b0ce31bb6f70cd273db019a913915e