chore(deps): update ghcr.io/actions/actions-runner docker tag to v2.336.0 #16

Open
sa-renovate wants to merge 1 commit from renovate/ghcr.io-actions-actions-runner-2.x into main
Member

This PR contains the following updates:

Package Type Update Change
ghcr.io/actions/actions-runner final minor 2.333.12.336.0

Release Notes

actions/runner (ghcr.io/actions/actions-runner)

v2.336.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.335.0...v2.336.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.336.0/actions-runner-win-x64-2.336.0.zip -OutFile actions-runner-win-x64-2.336.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.336.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.336.0/actions-runner-win-arm64-2.336.0.zip -OutFile actions-runner-win-arm64-2.336.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.336.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.336.0/actions-runner-osx-x64-2.336.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.336.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.336.0/actions-runner-osx-arm64-2.336.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.336.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.336.0/actions-runner-linux-x64-2.336.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.336.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.336.0/actions-runner-linux-arm64-2.336.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.336.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.336.0/actions-runner-linux-arm-2.336.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.336.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.336.0.zip d59123a43003e357b0805b5d0f611d0bd2f65ab67d51bd070dd4e7a0f685c162
  • actions-runner-win-arm64-2.336.0.zip b3799e9cf754fe4dfcb3d220c9701c924829737ee815dbeb674f8bd076794504
  • actions-runner-osx-x64-2.336.0.tar.gz f79c43232761ca495fc18df550bb2865aa99984b37c173c0aa1f8c09d0d548fe
  • actions-runner-osx-arm64-2.336.0.tar.gz 8e8839c49b7060b6b2154f4931f815df330c27f167d53ef2239ee3dfce28b079
  • actions-runner-linux-x64-2.336.0.tar.gz 04cf0be1aff4c3ec3554466c39124ca250e3effd8873bb7e8d68535aa9505d5d
  • actions-runner-linux-arm64-2.336.0.tar.gz 58b758e420b87093fbd4bfddd368074960053e2f1388f01848c82624b90f27d1
  • actions-runner-linux-arm-2.336.0.tar.gz 44a300f322a1b5bccfe0b146cf3ca74f27000eb8afed761d1ffd90be035969d4

v2.335.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/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:


# 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.335.1/actions-runner-win-x64-2.335.1.zip -OutFile actions-runner-win-x64-2.335.1.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.335.1.zip", "$PWD")

Windows arm64

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

The following snipped needs to be run on powershell:


# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-win-arm64-2.335.1.zip -OutFile actions-runner-win-arm64-2.335.1.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.335.1.zip", "$PWD")

OSX x64


# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-osx-x64-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.335.1.tar.gz

OSX arm64 (Apple silicon)


# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-osx-arm64-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.335.1.tar.gz

Linux x64


# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-linux-x64-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.335.1.tar.gz

Linux arm64


# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-linux-arm64-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.335.1.tar.gz

Linux arm


# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.335.1/actions-runner-linux-arm-2.335.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.335.1.tar.gz

Using your self hosted runner

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

SHA-256 Checksums

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

  • actions-runner-win-x64-2.335.1.zip eb65c95277af42bcf3778a799c41359d224ba2a67b4de26b7cea1729b09c803d
  • actions-runner-win-arm64-2.335.1.zip 6cd1409daad8be4f77deb0c677ceb6153fccbab2e33af4fdc1b3465bd42ec742
  • actions-runner-osx-x64-2.335.1.tar.gz b2fe57b2ae5b0bc1605f9fc0723c07eedf06167321d3478ce0440f15e5b0a010
  • actions-runner-osx-arm64-2.335.1.tar.gz e1a9bc7a3661e06fa0b129d15c2064fe65dc81a431001d8958a9db1409b73769
  • actions-runner-linux-x64-2.335.1.tar.gz 4ef2f25285f0ae4477f1fe1e346db76d2f3ebf03824e2ddd1973a2819bf6c8cf
  • actions-runner-linux-arm64-2.335.1.tar.gz 6d1e85bfd1a506a8b17c1f1b9b57dba458ffed90898799aaa9f599520b0d9207
  • actions-runner-linux-arm-2.335.1.tar.gz d9810476ceebb6739913ed16afd5c61664e53312a444ee5226e9010a4219a864

v2.335.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/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:


# 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.335.0/actions-runner-win-x64-2.335.0.zip -OutFile actions-runner-win-x64-2.335.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.335.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.335.0/actions-runner-win-arm64-2.335.0.zip -OutFile actions-runner-win-arm64-2.335.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.335.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.335.0/actions-runner-osx-x64-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.335.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.335.0/actions-runner-osx-arm64-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.335.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.335.0/actions-runner-linux-x64-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.335.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.335.0/actions-runner-linux-arm64-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.335.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.335.0/actions-runner-linux-arm-2.335.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.335.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.335.0.zip 0422df90994cc5e2350238fb2707029fddaa156e7e4562b14e35086f94417e87
  • actions-runner-win-arm64-2.335.0.zip e0f4601ec0822c6a453672e65f6f58c2285b7390376ce00ce001021e15918c98
  • actions-runner-osx-x64-2.335.0.tar.gz c3537857b03fe008fd2fc6f7e9dc12aa9692c32b00c672e425684ca79fed4716
  • actions-runner-osx-arm64-2.335.0.tar.gz a1b382dda2cbb00a5e78fc21e7dbf4dbcf35edf44d6fd8686c8302e6f15cd065
  • actions-runner-linux-x64-2.335.0.tar.gz cf484ecd77f8832103cbf6f6dc4f930cfe93a71cd37895ebda0165fec1fa920b
  • actions-runner-linux-arm64-2.335.0.tar.gz 454b6ff207b90d35a39580ae37854fd68839d0f9af9c5e73b51d7d0842ae2b1c
  • actions-runner-linux-arm-2.335.0.tar.gz 854acd84462ea009f29712d980318af0422151fe5b9fa3b39defd87b3d55b352

v2.334.0

Compare Source

What's Changed

New Contributors

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

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [ghcr.io/actions/actions-runner](https://github.com/actions/runner) | final | minor | `2.333.1` → `2.336.0` | --- ### Release Notes <details> <summary>actions/runner (ghcr.io/actions/actions-runner)</summary> ### [`v2.336.0`](https://github.com/actions/runner/releases/tag/v2.336.0) [Compare Source](https://github.com/actions/runner/compare/v2.335.1...v2.336.0) #### What's Changed - Canceled background steps should not impact job result by [@&#8203;lokesh755](https://github.com/lokesh755) in [#&#8203;4482](https://github.com/actions/runner/pull/4482) - Report actions archive size in telemetry. by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4509](https://github.com/actions/runner/pull/4509) - Bump actions/checkout from 6 to 7 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4511](https://github.com/actions/runner/pull/4511) - Update Docker to v29.6.0 and Buildx to v0.35.0 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4516](https://github.com/actions/runner/pull/4516) - chore: update Node versions by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4519](https://github.com/actions/runner/pull/4519) - chore: update Node versions by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4530](https://github.com/actions/runner/pull/4530) - feat: enhance telemetry for action download resolution and failures by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4536](https://github.com/actions/runner/pull/4536) - Update Docker version to 29.6.1 by [@&#8203;AllanGuigou](https://github.com/AllanGuigou) in [#&#8203;4539](https://github.com/actions/runner/pull/4539) - feat: add self-repository action reference syntax by [@&#8203;nodeselector](https://github.com/nodeselector) in [#&#8203;4457](https://github.com/actions/runner/pull/4457) - Update dotnet sdk to latest version [@&#8203;8](https://github.com/8).0.422 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4504](https://github.com/actions/runner/pull/4504) - Link config.sh and installdependencies.sh in docs by [@&#8203;Wuodan](https://github.com/Wuodan) in [#&#8203;4526](https://github.com/actions/runner/pull/4526) - Add support for $GITHUB\_ARTIFACTS environment files by [@&#8203;bdehamer](https://github.com/bdehamer) in [#&#8203;4527](https://github.com/actions/runner/pull/4527) - feat: expose effective cache-mode to steps via ACTIONS\_CACHE\_MODE by [@&#8203;philip-gai](https://github.com/philip-gai) in [#&#8203;4538](https://github.com/actions/runner/pull/4538) - Setup Job: announce when running with locked dependencies by [@&#8203;nodeselector](https://github.com/nodeselector) in [#&#8203;4546](https://github.com/actions/runner/pull/4546) - Setup Job: reword locked-dependencies log line to use lockfile language by [@&#8203;nodeselector](https://github.com/nodeselector) in [#&#8203;4550](https://github.com/actions/runner/pull/4550) - Wait for worker to finish during cancel by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4553](https://github.com/actions/runner/pull/4553) - do not cap migrated setting retry is exception is session conflict by [@&#8203;aiqiaoy](https://github.com/aiqiaoy) in [#&#8203;4557](https://github.com/actions/runner/pull/4557) - Allow checking DNS with api.gihub.com. by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4547](https://github.com/actions/runner/pull/4547) - Exit ephemeral runners on broker acknowledge job-not-found by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4540](https://github.com/actions/runner/pull/4540) - Cleanup session files on get message or session deleted error by [@&#8203;nikola-jokic](https://github.com/nikola-jokic) in [#&#8203;4551](https://github.com/actions/runner/pull/4551) - Recreate session on RunnerSessionInvalid from broker by [@&#8203;luketomlinson](https://github.com/luketomlinson) in [#&#8203;4556](https://github.com/actions/runner/pull/4556) #### New Contributors - [@&#8203;Wuodan](https://github.com/Wuodan) made their first contribution in [#&#8203;4526](https://github.com/actions/runner/pull/4526) - [@&#8203;bdehamer](https://github.com/bdehamer) made their first contribution in [#&#8203;4527](https://github.com/actions/runner/pull/4527) - [@&#8203;philip-gai](https://github.com/philip-gai) made their first contribution in [#&#8203;4538](https://github.com/actions/runner/pull/4538) **Full Changelog**: <https://github.com/actions/runner/compare/v2.335.0...v2.336.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`: ```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.336.0/actions-runner-win-x64-2.336.0.zip -OutFile actions-runner-win-x64-2.336.0.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.336.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`: ```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.336.0/actions-runner-win-arm64-2.336.0.zip -OutFile actions-runner-win-arm64-2.336.0.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.336.0.zip", "$PWD") ``` #### OSX x64 ```bash # 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.336.0/actions-runner-osx-x64-2.336.0.tar.gz # Extract the installer tar xzf ./actions-runner-osx-x64-2.336.0.tar.gz ``` #### OSX arm64 (Apple silicon) ```bash # 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.336.0/actions-runner-osx-arm64-2.336.0.tar.gz # Extract the installer tar xzf ./actions-runner-osx-arm64-2.336.0.tar.gz ``` #### Linux x64 ```bash # 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.336.0/actions-runner-linux-x64-2.336.0.tar.gz # Extract the installer tar xzf ./actions-runner-linux-x64-2.336.0.tar.gz ``` #### Linux arm64 ```bash # 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.336.0/actions-runner-linux-arm64-2.336.0.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm64-2.336.0.tar.gz ``` #### Linux arm ```bash # 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.336.0/actions-runner-linux-arm-2.336.0.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm-2.336.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.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners) #### SHA-256 Checksums The SHA-256 checksums for the packages included in this build are shown below: - actions-runner-win-x64-2.336.0.zip <!-- BEGIN SHA win-x64 -->d59123a43003e357b0805b5d0f611d0bd2f65ab67d51bd070dd4e7a0f685c162<!-- END SHA win-x64 --> - actions-runner-win-arm64-2.336.0.zip <!-- BEGIN SHA win-arm64 -->b3799e9cf754fe4dfcb3d220c9701c924829737ee815dbeb674f8bd076794504<!-- END SHA win-arm64 --> - actions-runner-osx-x64-2.336.0.tar.gz <!-- BEGIN SHA osx-x64 -->f79c43232761ca495fc18df550bb2865aa99984b37c173c0aa1f8c09d0d548fe<!-- END SHA osx-x64 --> - actions-runner-osx-arm64-2.336.0.tar.gz <!-- BEGIN SHA osx-arm64 -->8e8839c49b7060b6b2154f4931f815df330c27f167d53ef2239ee3dfce28b079<!-- END SHA osx-arm64 --> - actions-runner-linux-x64-2.336.0.tar.gz <!-- BEGIN SHA linux-x64 -->04cf0be1aff4c3ec3554466c39124ca250e3effd8873bb7e8d68535aa9505d5d<!-- END SHA linux-x64 --> - actions-runner-linux-arm64-2.336.0.tar.gz <!-- BEGIN SHA linux-arm64 -->58b758e420b87093fbd4bfddd368074960053e2f1388f01848c82624b90f27d1<!-- END SHA linux-arm64 --> - actions-runner-linux-arm-2.336.0.tar.gz <!-- BEGIN SHA linux-arm -->44a300f322a1b5bccfe0b146cf3ca74f27000eb8afed761d1ffd90be035969d4<!-- END SHA linux-arm --> ### [`v2.335.1`](https://github.com/actions/runner/releases/tag/v2.335.1) [Compare Source](https://github.com/actions/runner/compare/v2.335.0...v2.335.1) #### What's Changed - Bump System.ServiceProcess.ServiceController from 10.0.6 to 10.0.7 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4370](https://github.com/actions/runner/pull/4370) - Bump [@&#8203;actions/glob](https://github.com/actions/glob) from 0.6.1 to 0.7.0 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4367](https://github.com/actions/runner/pull/4367) - feat: propagate actions dependencies by [@&#8203;nodeselector](https://github.com/nodeselector) in [#&#8203;4372](https://github.com/actions/runner/pull/4372) - Not retry and report action download 403. by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4391](https://github.com/actions/runner/pull/4391) - Update setup job starting logs by [@&#8203;GitPaulo](https://github.com/GitPaulo) in [#&#8203;4383](https://github.com/actions/runner/pull/4383) - fix: expand commit hash regex to support SHA-256 (64-char) hashes by [@&#8203;yaananth](https://github.com/yaananth) in [#&#8203;4347](https://github.com/actions/runner/pull/4347) - Move dap setup to setup job step by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4403](https://github.com/actions/runner/pull/4403) - Add support for Ubuntu 26.04 (liblttng-ust1t64, libicu77-80) by [@&#8203;dvaldivia](https://github.com/dvaldivia) in [#&#8203;4394](https://github.com/actions/runner/pull/4394) - Update dotnet sdk to latest version [@&#8203;8](https://github.com/8).0.421 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4428](https://github.com/actions/runner/pull/4428) - Update Docker to v29.5.0 and Buildx to v0.34.0 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4425](https://github.com/actions/runner/pull/4425) - Execute debugger REPL commands inside job container by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4420](https://github.com/actions/runner/pull/4420) - Send welcome message in debugger console on connect by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4419](https://github.com/actions/runner/pull/4419) - Update snapshot-if context and functions by [@&#8203;drielenr](https://github.com/drielenr) in [#&#8203;4443](https://github.com/actions/runner/pull/4443) - chore: update Node versions by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4452](https://github.com/actions/runner/pull/4452) - Allow disable node v8 maglev jit compiler on node24. by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4447](https://github.com/actions/runner/pull/4447) - Update Node 24 default date to June 16th, 2026 by [@&#8203;salmanmkc](https://github.com/salmanmkc) in [#&#8203;4462](https://github.com/actions/runner/pull/4462) - Populate telemetry for non-action post-job steps by [@&#8203;drielenr](https://github.com/drielenr) in [#&#8203;4463](https://github.com/actions/runner/pull/4463) - Add SDK types and results plumbing for background step control by [@&#8203;lokesh755](https://github.com/lokesh755) in [#&#8203;4472](https://github.com/actions/runner/pull/4472) - Add job execution view model by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4470](https://github.com/actions/runner/pull/4470) - Add thread-safety locks to StepsContext by [@&#8203;lokesh755](https://github.com/lokesh755) in [#&#8203;4475](https://github.com/actions/runner/pull/4475) - Add background step deferral infrastructure and metadata plumbing by [@&#8203;lokesh755](https://github.com/lokesh755) in [#&#8203;4479](https://github.com/actions/runner/pull/4479) - Wire job execution view into DAP by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4471](https://github.com/actions/runner/pull/4471) - Background steps execution engine by [@&#8203;lokesh755](https://github.com/lokesh755) in [#&#8203;4476](https://github.com/actions/runner/pull/4476) - Update Docker to v29.5.2 and Buildx to v0.34.1 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4451](https://github.com/actions/runner/pull/4451) - BrokerServer should not retry on 401. by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4445](https://github.com/actions/runner/pull/4445) - Add new env var to allow single-prefix multiline logs on stdout by [@&#8203;nuclearpidgeon](https://github.com/nuclearpidgeon) in [#&#8203;4424](https://github.com/actions/runner/pull/4424) - Bump Microsoft.DevTunnels.Connections from 1.3.39 to 1.3.48 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4441](https://github.com/actions/runner/pull/4441) - Bump System.Formats.Asn1 and System.Security.Cryptography.Pkcs by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4369](https://github.com/actions/runner/pull/4369) #### New Contributors - [@&#8203;GitPaulo](https://github.com/GitPaulo) made their first contribution in [#&#8203;4383](https://github.com/actions/runner/pull/4383) - [@&#8203;dvaldivia](https://github.com/dvaldivia) made their first contribution in [#&#8203;4394](https://github.com/actions/runner/pull/4394) - [@&#8203;drielenr](https://github.com/drielenr) made their first contribution in [#&#8203;4443](https://github.com/actions/runner/pull/4443) - [@&#8203;nuclearpidgeon](https://github.com/nuclearpidgeon) made their first contribution in [#&#8203;4424](https://github.com/actions/runner/pull/4424) **Full Changelog**: <https://github.com/actions/runner/compare/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`: ```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.335.1/actions-runner-win-x64-2.335.1.zip -OutFile actions-runner-win-x64-2.335.1.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.335.1.zip", "$PWD") ``` #### Windows arm64 We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows. The following snipped needs to be run on `powershell`: ```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.335.1/actions-runner-win-arm64-2.335.1.zip -OutFile actions-runner-win-arm64-2.335.1.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.335.1.zip", "$PWD") ``` #### OSX x64 ```bash # 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.335.1/actions-runner-osx-x64-2.335.1.tar.gz # Extract the installer tar xzf ./actions-runner-osx-x64-2.335.1.tar.gz ``` #### OSX arm64 (Apple silicon) ```bash # 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.335.1/actions-runner-osx-arm64-2.335.1.tar.gz # Extract the installer tar xzf ./actions-runner-osx-arm64-2.335.1.tar.gz ``` #### Linux x64 ```bash # 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.335.1/actions-runner-linux-x64-2.335.1.tar.gz # Extract the installer tar xzf ./actions-runner-linux-x64-2.335.1.tar.gz ``` #### Linux arm64 ```bash # 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.335.1/actions-runner-linux-arm64-2.335.1.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm64-2.335.1.tar.gz ``` #### Linux arm ```bash # 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.335.1/actions-runner-linux-arm-2.335.1.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm-2.335.1.tar.gz ``` #### Using your self hosted runner For additional details about configuring, running, or shutting down the runner please check out our [product docs.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners) #### SHA-256 Checksums The SHA-256 checksums for the packages included in this build are shown below: - actions-runner-win-x64-2.335.1.zip <!-- BEGIN SHA win-x64 -->eb65c95277af42bcf3778a799c41359d224ba2a67b4de26b7cea1729b09c803d<!-- END SHA win-x64 --> - actions-runner-win-arm64-2.335.1.zip <!-- BEGIN SHA win-arm64 -->6cd1409daad8be4f77deb0c677ceb6153fccbab2e33af4fdc1b3465bd42ec742<!-- END SHA win-arm64 --> - actions-runner-osx-x64-2.335.1.tar.gz <!-- BEGIN SHA osx-x64 -->b2fe57b2ae5b0bc1605f9fc0723c07eedf06167321d3478ce0440f15e5b0a010<!-- END SHA osx-x64 --> - actions-runner-osx-arm64-2.335.1.tar.gz <!-- BEGIN SHA osx-arm64 -->e1a9bc7a3661e06fa0b129d15c2064fe65dc81a431001d8958a9db1409b73769<!-- END SHA osx-arm64 --> - actions-runner-linux-x64-2.335.1.tar.gz <!-- BEGIN SHA linux-x64 -->4ef2f25285f0ae4477f1fe1e346db76d2f3ebf03824e2ddd1973a2819bf6c8cf<!-- END SHA linux-x64 --> - actions-runner-linux-arm64-2.335.1.tar.gz <!-- BEGIN SHA linux-arm64 -->6d1e85bfd1a506a8b17c1f1b9b57dba458ffed90898799aaa9f599520b0d9207<!-- END SHA linux-arm64 --> - actions-runner-linux-arm-2.335.1.tar.gz <!-- BEGIN SHA linux-arm -->d9810476ceebb6739913ed16afd5c61664e53312a444ee5226e9010a4219a864<!-- END SHA linux-arm --> ### [`v2.335.0`](https://github.com/actions/runner/releases/tag/v2.335.0) [Compare Source](https://github.com/actions/runner/compare/v2.334.0...v2.335.0) #### What's Changed - Bump System.ServiceProcess.ServiceController from 10.0.6 to 10.0.7 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4370](https://github.com/actions/runner/pull/4370) - Bump [@&#8203;actions/glob](https://github.com/actions/glob) from 0.6.1 to 0.7.0 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4367](https://github.com/actions/runner/pull/4367) - feat: propagate actions dependencies by [@&#8203;nodeselector](https://github.com/nodeselector) in [#&#8203;4372](https://github.com/actions/runner/pull/4372) - Not retry and report action download 403. by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4391](https://github.com/actions/runner/pull/4391) - Update setup job starting logs by [@&#8203;GitPaulo](https://github.com/GitPaulo) in [#&#8203;4383](https://github.com/actions/runner/pull/4383) - fix: expand commit hash regex to support SHA-256 (64-char) hashes by [@&#8203;yaananth](https://github.com/yaananth) in [#&#8203;4347](https://github.com/actions/runner/pull/4347) - Move dap setup to setup job step by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4403](https://github.com/actions/runner/pull/4403) - Add support for Ubuntu 26.04 (liblttng-ust1t64, libicu77-80) by [@&#8203;dvaldivia](https://github.com/dvaldivia) in [#&#8203;4394](https://github.com/actions/runner/pull/4394) - Update dotnet sdk to latest version [@&#8203;8](https://github.com/8).0.421 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4428](https://github.com/actions/runner/pull/4428) - Update Docker to v29.5.0 and Buildx to v0.34.0 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4425](https://github.com/actions/runner/pull/4425) - Execute debugger REPL commands inside job container by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4420](https://github.com/actions/runner/pull/4420) - Send welcome message in debugger console on connect by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4419](https://github.com/actions/runner/pull/4419) - Update snapshot-if context and functions by [@&#8203;drielenr](https://github.com/drielenr) in [#&#8203;4443](https://github.com/actions/runner/pull/4443) - chore: update Node versions by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4452](https://github.com/actions/runner/pull/4452) - Allow disable node v8 maglev jit compiler on node24. by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4447](https://github.com/actions/runner/pull/4447) - Update Node 24 default date to June 16th, 2026 by [@&#8203;salmanmkc](https://github.com/salmanmkc) in [#&#8203;4462](https://github.com/actions/runner/pull/4462) - Populate telemetry for non-action post-job steps by [@&#8203;drielenr](https://github.com/drielenr) in [#&#8203;4463](https://github.com/actions/runner/pull/4463) - Add SDK types and results plumbing for background step control by [@&#8203;lokesh755](https://github.com/lokesh755) in [#&#8203;4472](https://github.com/actions/runner/pull/4472) - Add job execution view model by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4470](https://github.com/actions/runner/pull/4470) - Add thread-safety locks to StepsContext by [@&#8203;lokesh755](https://github.com/lokesh755) in [#&#8203;4475](https://github.com/actions/runner/pull/4475) - Add background step deferral infrastructure and metadata plumbing by [@&#8203;lokesh755](https://github.com/lokesh755) in [#&#8203;4479](https://github.com/actions/runner/pull/4479) - Wire job execution view into DAP by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4471](https://github.com/actions/runner/pull/4471) - Background steps execution engine by [@&#8203;lokesh755](https://github.com/lokesh755) in [#&#8203;4476](https://github.com/actions/runner/pull/4476) - Update Docker to v29.5.2 and Buildx to v0.34.1 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4451](https://github.com/actions/runner/pull/4451) - BrokerServer should not retry on 401. by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4445](https://github.com/actions/runner/pull/4445) - Add new env var to allow single-prefix multiline logs on stdout by [@&#8203;nuclearpidgeon](https://github.com/nuclearpidgeon) in [#&#8203;4424](https://github.com/actions/runner/pull/4424) - Bump Microsoft.DevTunnels.Connections from 1.3.39 to 1.3.48 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4441](https://github.com/actions/runner/pull/4441) - Bump System.Formats.Asn1 and System.Security.Cryptography.Pkcs by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4369](https://github.com/actions/runner/pull/4369) #### New Contributors - [@&#8203;GitPaulo](https://github.com/GitPaulo) made their first contribution in [#&#8203;4383](https://github.com/actions/runner/pull/4383) - [@&#8203;dvaldivia](https://github.com/dvaldivia) made their first contribution in [#&#8203;4394](https://github.com/actions/runner/pull/4394) - [@&#8203;drielenr](https://github.com/drielenr) made their first contribution in [#&#8203;4443](https://github.com/actions/runner/pull/4443) - [@&#8203;nuclearpidgeon](https://github.com/nuclearpidgeon) made their first contribution in [#&#8203;4424](https://github.com/actions/runner/pull/4424) **Full Changelog**: <https://github.com/actions/runner/compare/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`: ```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.335.0/actions-runner-win-x64-2.335.0.zip -OutFile actions-runner-win-x64-2.335.0.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.335.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`: ```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.335.0/actions-runner-win-arm64-2.335.0.zip -OutFile actions-runner-win-arm64-2.335.0.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.335.0.zip", "$PWD") ``` #### OSX x64 ```bash # 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.335.0/actions-runner-osx-x64-2.335.0.tar.gz # Extract the installer tar xzf ./actions-runner-osx-x64-2.335.0.tar.gz ``` #### OSX arm64 (Apple silicon) ```bash # 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.335.0/actions-runner-osx-arm64-2.335.0.tar.gz # Extract the installer tar xzf ./actions-runner-osx-arm64-2.335.0.tar.gz ``` #### Linux x64 ```bash # 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.335.0/actions-runner-linux-x64-2.335.0.tar.gz # Extract the installer tar xzf ./actions-runner-linux-x64-2.335.0.tar.gz ``` #### Linux arm64 ```bash # 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.335.0/actions-runner-linux-arm64-2.335.0.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm64-2.335.0.tar.gz ``` #### Linux arm ```bash # 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.335.0/actions-runner-linux-arm-2.335.0.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm-2.335.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.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners) #### SHA-256 Checksums The SHA-256 checksums for the packages included in this build are shown below: - actions-runner-win-x64-2.335.0.zip <!-- BEGIN SHA win-x64 -->0422df90994cc5e2350238fb2707029fddaa156e7e4562b14e35086f94417e87<!-- END SHA win-x64 --> - actions-runner-win-arm64-2.335.0.zip <!-- BEGIN SHA win-arm64 -->e0f4601ec0822c6a453672e65f6f58c2285b7390376ce00ce001021e15918c98<!-- END SHA win-arm64 --> - actions-runner-osx-x64-2.335.0.tar.gz <!-- BEGIN SHA osx-x64 -->c3537857b03fe008fd2fc6f7e9dc12aa9692c32b00c672e425684ca79fed4716<!-- END SHA osx-x64 --> - actions-runner-osx-arm64-2.335.0.tar.gz <!-- BEGIN SHA osx-arm64 -->a1b382dda2cbb00a5e78fc21e7dbf4dbcf35edf44d6fd8686c8302e6f15cd065<!-- END SHA osx-arm64 --> - actions-runner-linux-x64-2.335.0.tar.gz <!-- BEGIN SHA linux-x64 -->cf484ecd77f8832103cbf6f6dc4f930cfe93a71cd37895ebda0165fec1fa920b<!-- END SHA linux-x64 --> - actions-runner-linux-arm64-2.335.0.tar.gz <!-- BEGIN SHA linux-arm64 -->454b6ff207b90d35a39580ae37854fd68839d0f9af9c5e73b51d7d0842ae2b1c<!-- END SHA linux-arm64 --> - actions-runner-linux-arm-2.335.0.tar.gz <!-- BEGIN SHA linux-arm -->854acd84462ea009f29712d980318af0422151fe5b9fa3b39defd87b3d55b352<!-- END SHA linux-arm --> ### [`v2.334.0`](https://github.com/actions/runner/releases/tag/v2.334.0) [Compare Source](https://github.com/actions/runner/compare/v2.333.1...v2.334.0) #### What's Changed - Bump flatted from 3.2.7 to 3.4.2 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4307](https://github.com/actions/runner/pull/4307) - Add DAP server by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4298](https://github.com/actions/runner/pull/4298) - Bump [@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 8.57.1 to 8.57.2 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4310](https://github.com/actions/runner/pull/4310) - Remove AllowCaseFunction feature flag by [@&#8203;ericsciple](https://github.com/ericsciple) in [#&#8203;4316](https://github.com/actions/runner/pull/4316) - chore: update Node versions by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4319](https://github.com/actions/runner/pull/4319) - Batch and deduplicate action resolution across composite depths by [@&#8203;stefanpenner](https://github.com/stefanpenner) in [#&#8203;4296](https://github.com/actions/runner/pull/4296) - Add support for Bearer token in action archive downloads by [@&#8203;TingluoHuang](https://github.com/TingluoHuang) in [#&#8203;4321](https://github.com/actions/runner/pull/4321) - Bump brace-expansion in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4318](https://github.com/actions/runner/pull/4318) - Add devtunnel connection for debugger jobs by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4317](https://github.com/actions/runner/pull/4317) - Update Docker to v29.3.1 and Buildx to v0.33.0 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4324](https://github.com/actions/runner/pull/4324) - Bump [@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 8.57.2 to 8.58.1 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4327](https://github.com/actions/runner/pull/4327) - Bump actions/github-script from 8 to 9 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4331](https://github.com/actions/runner/pull/4331) - Bump typescript from 5.9.3 to 6.0.2 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4329](https://github.com/actions/runner/pull/4329) - fix: only show changed versions in node upgrade PR description by [@&#8203;salmanmkc](https://github.com/salmanmkc) in [#&#8203;4332](https://github.com/actions/runner/pull/4332) - Bump System.Formats.Asn1, Cryptography.Pkcs, ProtectedData, ServiceController, CodePages, Threading.Channels, [@&#8203;actions/glob](https://github.com/actions/glob), [@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser), lint-staged, picomatch by [@&#8203;Copilot](https://github.com/Copilot) in [#&#8203;4333](https://github.com/actions/runner/pull/4333) - feat: add `job.workflow_*` typed accessors to JobContext by [@&#8203;salmanmkc](https://github.com/salmanmkc) in [#&#8203;4335](https://github.com/actions/runner/pull/4335) - Add WS bridge over DAP TCP server by [@&#8203;rentziass](https://github.com/rentziass) in [#&#8203;4328](https://github.com/actions/runner/pull/4328) - chore: update Node versions by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4355](https://github.com/actions/runner/pull/4355) - Bump Docker version to 29.4.0 by [@&#8203;Copilot](https://github.com/Copilot) in [#&#8203;4352](https://github.com/actions/runner/pull/4352) - Update dotnet sdk to latest version [@&#8203;8](https://github.com/8).0.420 by [@&#8203;github-actions](https://github.com/github-actions)\[bot] in [#&#8203;4356](https://github.com/actions/runner/pull/4356) - Bump [@&#8203;typescript-eslint/parser](https://github.com/typescript-eslint/parser) from 8.58.1 to 8.59.0 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4360](https://github.com/actions/runner/pull/4360) - Bump System.Formats.Asn1 and System.Security.Cryptography.Pkcs by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4362](https://github.com/actions/runner/pull/4362) - Add vulnerability-alerts permission by [@&#8203;salmanmkc](https://github.com/salmanmkc) in [#&#8203;4350](https://github.com/actions/runner/pull/4350) - Bump [@&#8203;typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) from 8.58.1 to 8.59.0 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4359](https://github.com/actions/runner/pull/4359) - Bump System.ServiceProcess.ServiceController from 10.0.3 to 10.0.6 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4358](https://github.com/actions/runner/pull/4358) - Bump typescript from 6.0.2 to 6.0.3 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4353](https://github.com/actions/runner/pull/4353) - Bump Microsoft.DevTunnels.Connections from 1.3.16 to 1.3.39 by [@&#8203;dependabot](https://github.com/dependabot)\[bot] in [#&#8203;4339](https://github.com/actions/runner/pull/4339) #### New Contributors - [@&#8203;stefanpenner](https://github.com/stefanpenner) made their first contribution in [#&#8203;4296](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`: ```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`: ```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 ```bash # 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) ```bash # 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 ```bash # 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 ```bash # 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 ```bash # 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.](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/adding-self-hosted-runners) #### 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 <!-- BEGIN SHA win-x64 -->a0c896f3acf37841cc17f392a38111d39501e56f2990434567f027ee89cf8981<!-- END SHA win-x64 --> - actions-runner-win-arm64-2.334.0.zip <!-- BEGIN SHA win-arm64 -->904ae95a96c6a596bd0f6abccebe715f0825f775a84842439a122e63b33dd1bc<!-- END SHA win-arm64 --> - actions-runner-osx-x64-2.334.0.tar.gz <!-- BEGIN SHA osx-x64 -->73a979ff7e9ce8a70244f3a959d896870be486fac92bb08ed90684f961474e0d<!-- END SHA osx-x64 --> - actions-runner-osx-arm64-2.334.0.tar.gz <!-- BEGIN SHA osx-arm64 -->760899b29fd4e942076bcd1160a662bf83c15d9ce8a8cc466763aec7e582b21b<!-- END SHA osx-arm64 --> - actions-runner-linux-x64-2.334.0.tar.gz <!-- BEGIN SHA linux-x64 -->048024cd2c848eb6f14d5646d56c13a4def2ae7ee3ad12122bee960c56f3d271<!-- END SHA linux-x64 --> - actions-runner-linux-arm64-2.334.0.tar.gz <!-- BEGIN SHA linux-arm64 -->f44255bd3e80160eb25f71bc83d06ea025f6908748807a584687b3184759f7e4<!-- END SHA linux-arm64 --> - actions-runner-linux-arm-2.334.0.tar.gz <!-- BEGIN SHA linux-arm -->84a25196caf971d0c634e32864731e773e1668235f799666fc0ec40ac666a0ab<!-- END SHA linux-arm --> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNDQuNCIsInVwZGF0ZWRJblZlciI6IjQzLjI0NC40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
chore(deps): update ghcr.io/actions/actions-runner docker tag to v2.335.1
Some checks failed
Go Tests / go-tests (pull_request) Failing after 53s
97f36a6a78
sa-renovate force-pushed renovate/ghcr.io-actions-actions-runner-2.x from 97f36a6a78
Some checks failed
Go Tests / go-tests (pull_request) Failing after 53s
to d57facf418
Some checks failed
Go Tests / go-tests (pull_request) Failing after 52s
2026-07-21 03:09:03 +00:00
Compare
sa-renovate changed title from chore(deps): update ghcr.io/actions/actions-runner docker tag to v2.335.1 to chore(deps): update ghcr.io/actions/actions-runner docker tag to v2.336.0 2026-07-21 03:09:06 +00:00
Some checks failed
Go Tests / go-tests (pull_request) Failing after 52s
Required
Details
Some required checks were not successful.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/ghcr.io-actions-actions-runner-2.x:renovate/ghcr.io-actions-actions-runner-2.x
git switch renovate/ghcr.io-actions-actions-runner-2.x
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
DevFW-CICD/garm-provider-edge-connect!16
No description provided.