Skip to content

Update ghcr.io/actions/actions-runner Docker tag to v2.334.0#2228

Merged
claytono merged 2 commits into
mainfrom
renovate/ghcr.io-actions-actions-runner-2.x
May 23, 2026
Merged

Update ghcr.io/actions/actions-runner Docker tag to v2.334.0#2228
claytono merged 2 commits into
mainfrom
renovate/ghcr.io-actions-actions-runner-2.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 18, 2026

This PR contains the following updates:

Package Update Change
ghcr.io/actions/actions-runner minor 2.333.02.334.0

Release Notes

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

v2.334.0

Compare Source

What's Changed

New Contributors

Full Changelog: actions/runner@v2.333.1...v2.334.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

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

The following snipped needs to be run on powershell:

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

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.334.0/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

v2.333.1

Compare Source

What's Changed

Full Changelog: actions/runner@v2.333.0...v2.333.1

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.1/actions-runner-win-x64-2.333.1.zip -OutFile actions-runner-win-x64-2.333.1.zip

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

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

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.333.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.333.1/actions-runner-osx-arm64-2.333.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.333.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.333.1/actions-runner-linux-x64-2.333.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.333.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.333.1/actions-runner-linux-arm64-2.333.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.333.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.333.1/actions-runner-linux-arm-2.333.1.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.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.333.1.zip d0c4fcb91f8f0754d478db5d61db533bba14cad6c4676a9b93c0b7c2a3969aa0
  • actions-runner-win-arm64-2.333.1.zip c665c4ce2bf1d79e1ce49051d91a9e84822a19891ceb442bdaae9fb0d82eb642
  • actions-runner-osx-x64-2.333.1.tar.gz e3be55b41452befae65ae032c10df4d8cc6a1926514ef837c45a04f18d11d9d9
  • actions-runner-osx-arm64-2.333.1.tar.gz 69d8c30aff69592fd0e3da6db1a477506ae5942cd438967f098bbdbc4e954c90
  • actions-runner-linux-x64-2.333.1.tar.gz 18f8f68ed1892854ff2ab1bab4fcaa2f5abeedc98093b6cb13638991725cab74
  • actions-runner-linux-arm64-2.333.1.tar.gz 69ac7e5692f877189e7dddf4a1bb16cbbd6425568cd69a0359895fac48b9ad3b
  • actions-runner-linux-arm-2.333.1.tar.gz 26d89c7b08685ab6aa9155e062ad60a3f63cb571b7510eadbc723b2f7e4c9f8b

Configuration

📅 Schedule: (in timezone America/New_York)

  • Branch creation
    • "after 2am and before 8am on monday"
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the renovate label May 18, 2026
@renovate renovate Bot requested a review from claytono as a code owner May 18, 2026 06:38
@renovate renovate Bot added the renovate label May 18, 2026
@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented May 18, 2026

ghcr.io/actions/actions-runner (docker) 2.333.0 -> 2.334.0

Risk: 🟡 Caution

The Deep Dive

Update Scope

Updates the ARC runner image in kubernetes/codex-runners values and rendered AutoscalingRunnerSet from ghcr.io/actions/actions-runner:2.333.0@sha256:1ad983536759ceec39ed75a2c8f007ca8c37b66eee35ed86f13623b29a4db97d to ghcr.io/actions/actions-runner:2.334.0@sha256:b6614fce332517f74d0a76e7c762fb08e4f2ff13dcf333183397c8a5725b6e8e. The gha-runner-scale-set chart remains 0.14.1, so this is a runner-container runtime change for future codex ARC jobs, not a controller/chart upgrade.

Performance & Stability

Key Fixes

Newer Versions

No newer runner release is available: the actions/runner release list shows v2.334.0 as the latest release, so there is no later patch to prefer for this version range.

Hazards & Risks

No breaking change was identified for the configured Linux ARC scale set, but validate one post-merge codex job before treating it as routine. The deployment relies on the job-started hook and runner PVC setup plus ACTIONS_RUNNER_HOOK_JOB_STARTED in values.yaml, and this PR changes the underlying actions/runner image.

Sources


🟡 Verdict: Caution

renovate:caution: deploy after the current GitHub-hosted checkout failure is cleared, then run one self-hosted codex ARC workflow as a smoke check. I found no newer actions/runner patch, no deployment-relevant CVE introduced or resolved by this PR, and no configured Docker job-container path affected by the Docker/Buildx bump.

@renovate renovate Bot force-pushed the renovate/ghcr.io-actions-actions-runner-2.x branch 6 times, most recently from e6f0bff to 5b9ce74 Compare May 18, 2026 23:22
@renovate renovate Bot force-pushed the renovate/ghcr.io-actions-actions-runner-2.x branch 18 times, most recently from 0c77242 to f9c48fe Compare May 23, 2026 02:56
@renovate renovate Bot force-pushed the renovate/ghcr.io-actions-actions-runner-2.x branch from 3bd6985 to a79fe79 Compare May 23, 2026 14:02
@renovate renovate Bot force-pushed the renovate/ghcr.io-actions-actions-runner-2.x branch from 5a74d51 to fe0dcd6 Compare May 23, 2026 15:40
@claytono claytono merged commit f402db8 into main May 23, 2026
20 checks passed
@claytono claytono deleted the renovate/ghcr.io-actions-actions-runner-2.x branch May 23, 2026 17:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant