Skip to content

feat(container): update image ghcr.io/home-operations/actions-runner ( 2.332.0 → 2.334.0 )#2894

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ghcr.io-home-operations-actions-runner-2.x
Open

feat(container): update image ghcr.io/home-operations/actions-runner ( 2.332.0 → 2.334.0 )#2894
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/ghcr.io-home-operations-actions-runner-2.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 18, 2026

This PR contains the following updates:

Package Update Change
ghcr.io/home-operations/actions-runner (source) minor 2.332.02.334.0

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

actions/runner (ghcr.io/home-operations/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

v2.333.0

Compare Source

What's Changed
New Contributors

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

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

Windows x64

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

The following snipped needs to be run on powershell:

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

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.333.0/actions-runner-win-x64-2.333.0.zip -OutFile actions-runner-win-x64-2.333.0.zip

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

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

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

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

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

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

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.333.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.333.0.zip 7176d0c4b674d4108b515503a53b4bc9eeab9339c645e274a97c142fe1c64b95
  • actions-runner-win-arm64-2.333.0.zip a84e324e0c46b983a5eeb517260aee14e4fbb13968371f7b269da62c8639186d
  • actions-runner-osx-x64-2.333.0.tar.gz 2b0ba7df7be9b9c36b4b86c19539b3a8be027ce926610b71606a6e445197094b
  • actions-runner-osx-arm64-2.333.0.tar.gz d92ea082bede9616120800b0e4a09f1aa209c922ade05d59bc3ee7c4de56f73c
  • actions-runner-linux-x64-2.333.0.tar.gz 7ce6b3fd8f879797fcc252c2918a23e14a233413dc6e6ab8e0ba8768b5d54475
  • actions-runner-linux-arm64-2.333.0.tar.gz b5697062a13f63b44f869de9369638a7039677b9e0f87e47a6001a758c0d09bf
  • actions-runner-linux-arm-2.333.0.tar.gz 370383a927b3fb61f5b892e0f87eda277b6826eec3dbd17d320f8a472560cec8

Configuration

📅 Schedule: (in timezone Europe/Moscow)

  • 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 these updates again.


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

This PR was generated by Mend Renovate. View the repository job log.

@mglants-bot
Copy link
Copy Markdown

mglants-bot Bot commented Mar 18, 2026

--- kubernetes/subterra/apps/dev/actions-runner-controller/runners Kustomization: flux-system/actions-runner-controller-runners HelmRelease: dev/arc-containers

+++ kubernetes/subterra/apps/dev/actions-runner-controller/runners Kustomization: flux-system/actions-runner-controller-runners HelmRelease: dev/arc-containers

@@ -40,13 +40,13 @@

         labels:
           app.kubernetes.io/name: arc-containers-runner
       spec:
         containers:
         - command:
           - /home/runner/run.sh
-          image: ghcr.io/home-operations/actions-runner:2.332.0
+          image: ghcr.io/home-operations/actions-runner:2.334.0
           name: runner
   valuesFrom:
   - kind: Secret
     name: actions-runner-controller-auth
     targetPath: githubConfigSecret.github_app_id
     valuesKey: github_app_id
--- kubernetes/subterra/apps/dev/actions-runner-controller/runners Kustomization: flux-system/actions-runner-controller-runners HelmRelease: dev/arc-glantswrt

+++ kubernetes/subterra/apps/dev/actions-runner-controller/runners Kustomization: flux-system/actions-runner-controller-runners HelmRelease: dev/arc-glantswrt

@@ -40,13 +40,13 @@

         labels:
           app.kubernetes.io/name: arc-glantswrt-runner
       spec:
         containers:
         - command:
           - /home/runner/run.sh
-          image: ghcr.io/home-operations/actions-runner:2.332.0
+          image: ghcr.io/home-operations/actions-runner:2.334.0
           name: runner
   valuesFrom:
   - kind: Secret
     name: actions-runner-controller-auth
     targetPath: githubConfigSecret.github_app_id
     valuesKey: github_app_id
--- kubernetes/subterra/apps/dev/actions-runner-controller/runners Kustomization: flux-system/actions-runner-controller-runners HelmRelease: dev/arc-nikkix

+++ kubernetes/subterra/apps/dev/actions-runner-controller/runners Kustomization: flux-system/actions-runner-controller-runners HelmRelease: dev/arc-nikkix

@@ -40,13 +40,13 @@

         labels:
           app.kubernetes.io/name: arc-nikkix-runner
       spec:
         containers:
         - command:
           - /home/runner/run.sh
-          image: ghcr.io/home-operations/actions-runner:2.332.0
+          image: ghcr.io/home-operations/actions-runner:2.334.0
           name: runner
         securityContext:
           fsGroup: 1001
           fsGroupChangePolicy: OnRootMismatch
         topologySpreadConstraints:
         - labelSelector:

@mglants-bot
Copy link
Copy Markdown

mglants-bot Bot commented Mar 18, 2026

--- HelmRelease: dev/arc-nikkix AutoscalingRunnerSet: dev/arc-runner-set-nikkix

+++ HelmRelease: dev/arc-nikkix AutoscalingRunnerSet: dev/arc-runner-set-nikkix

@@ -10,13 +10,13 @@

     app.kubernetes.io/instance: arc-runner-set-nikkix
     app.kubernetes.io/managed-by: Helm
     app.kubernetes.io/part-of: gha-rs
     actions.github.com/scale-set-name: arc-runner-set-nikkix
     actions.github.com/scale-set-namespace: dev
   annotations:
-    actions.github.com/values-hash: 579db7201679596cda457b062d8c9d73c08833efbdb6ec31def6ead78c3a429
+    actions.github.com/values-hash: 0bf87d5f0013b4e345141b8a2ed36a670cd999442e23619bd98332494cf0da8
     actions.github.com/cleanup-github-secret-name: arc-runner-set-nikkix-gha-rs-github-secret
     actions.github.com/cleanup-manager-role-binding: arc-runner-set-nikkix-gha-rs-manager
     actions.github.com/cleanup-manager-role-name: arc-runner-set-nikkix-gha-rs-manager
     actions.github.com/cleanup-no-permission-service-account-name: arc-runner-set-nikkix-gha-rs-no-permission
 spec:
   githubConfigUrl: https://github.com/mglants/nikkix
@@ -46,13 +46,13 @@

         topologyKey: kubernetes.io/hostname
         whenUnsatisfiable: ScheduleAnyway
       restartPolicy: Never
       serviceAccountName: arc-runner-set-nikkix-gha-rs-no-permission
       initContainers:
       - name: init-dind-externals
-        image: ghcr.io/home-operations/actions-runner:2.332.0
+        image: ghcr.io/home-operations/actions-runner:2.334.0
         command:
         - cp
         args:
         - -r
         - /home/runner/externals/.
         - /home/runner/tmpDir/
@@ -87,13 +87,13 @@

         - name: dind-externals
           mountPath: /home/runner/externals
       containers:
       - name: runner
         command:
         - /home/runner/run.sh
-        image: ghcr.io/home-operations/actions-runner:2.332.0
+        image: ghcr.io/home-operations/actions-runner:2.334.0
         env:
         - name: DOCKER_HOST
           value: unix:///var/run/docker.sock
         - name: RUNNER_WAIT_FOR_DOCKER_IN_SECONDS
           value: '120'
         volumeMounts:
--- HelmRelease: dev/arc-glantswrt AutoscalingRunnerSet: dev/arc-runner-set-glantswrt

+++ HelmRelease: dev/arc-glantswrt AutoscalingRunnerSet: dev/arc-runner-set-glantswrt

@@ -10,13 +10,13 @@

     app.kubernetes.io/instance: arc-runner-set-glantswrt
     app.kubernetes.io/managed-by: Helm
     app.kubernetes.io/part-of: gha-rs
     actions.github.com/scale-set-name: arc-runner-set-glantswrt
     actions.github.com/scale-set-namespace: dev
   annotations:
-    actions.github.com/values-hash: 3760ae519db559ea6b6b42125895595dc9a238ed7854638a381eb9753ed4ae9
+    actions.github.com/values-hash: 900f354228dc0e68ecf7ea812a8369b9a2f2a8950b451d0a6995018afedd243
     actions.github.com/cleanup-github-secret-name: arc-runner-set-glantswrt-gha-rs-github-secret
     actions.github.com/cleanup-manager-role-binding: arc-runner-set-glantswrt-gha-rs-manager
     actions.github.com/cleanup-manager-role-name: arc-runner-set-glantswrt-gha-rs-manager
     actions.github.com/cleanup-no-permission-service-account-name: arc-runner-set-glantswrt-gha-rs-no-permission
 spec:
   githubConfigUrl: https://github.com/mglants/glantswrt
@@ -36,13 +36,13 @@

         app.kubernetes.io/name: arc-glantswrt-runner
     spec:
       restartPolicy: Never
       serviceAccountName: arc-runner-set-glantswrt-gha-rs-no-permission
       initContainers:
       - name: init-dind-externals
-        image: ghcr.io/home-operations/actions-runner:2.332.0
+        image: ghcr.io/home-operations/actions-runner:2.334.0
         command:
         - cp
         args:
         - -r
         - /home/runner/externals/.
         - /home/runner/tmpDir/
@@ -77,13 +77,13 @@

         - name: dind-externals
           mountPath: /home/runner/externals
       containers:
       - name: runner
         command:
         - /home/runner/run.sh
-        image: ghcr.io/home-operations/actions-runner:2.332.0
+        image: ghcr.io/home-operations/actions-runner:2.334.0
         env:
         - name: DOCKER_HOST
           value: unix:///var/run/docker.sock
         - name: RUNNER_WAIT_FOR_DOCKER_IN_SECONDS
           value: '120'
         volumeMounts:
--- HelmRelease: dev/arc-containers AutoscalingRunnerSet: dev/arc-runner-set-containers

+++ HelmRelease: dev/arc-containers AutoscalingRunnerSet: dev/arc-runner-set-containers

@@ -10,13 +10,13 @@

     app.kubernetes.io/instance: arc-runner-set-containers
     app.kubernetes.io/managed-by: Helm
     app.kubernetes.io/part-of: gha-rs
     actions.github.com/scale-set-name: arc-runner-set-containers
     actions.github.com/scale-set-namespace: dev
   annotations:
-    actions.github.com/values-hash: 68ca1fae3381f461f675407c7454f3b018cfb9f419375d19013fb3d754e641e
+    actions.github.com/values-hash: 79685c2f77a712dde6e76adb95603e6f1f014d63eb5c139e7512f8f2cacba91
     actions.github.com/cleanup-github-secret-name: arc-runner-set-containers-gha-rs-github-secret
     actions.github.com/cleanup-manager-role-binding: arc-runner-set-containers-gha-rs-manager
     actions.github.com/cleanup-manager-role-name: arc-runner-set-containers-gha-rs-manager
     actions.github.com/cleanup-no-permission-service-account-name: arc-runner-set-containers-gha-rs-no-permission
 spec:
   githubConfigUrl: https://github.com/mglants/containers
@@ -36,13 +36,13 @@

         app.kubernetes.io/name: arc-containers-runner
     spec:
       restartPolicy: Never
       serviceAccountName: arc-runner-set-containers-gha-rs-no-permission
       initContainers:
       - name: init-dind-externals
-        image: ghcr.io/home-operations/actions-runner:2.332.0
+        image: ghcr.io/home-operations/actions-runner:2.334.0
         command:
         - cp
         args:
         - -r
         - /home/runner/externals/.
         - /home/runner/tmpDir/
@@ -77,13 +77,13 @@

         - name: dind-externals
           mountPath: /home/runner/externals
       containers:
       - name: runner
         command:
         - /home/runner/run.sh
-        image: ghcr.io/home-operations/actions-runner:2.332.0
+        image: ghcr.io/home-operations/actions-runner:2.334.0
         env:
         - name: DOCKER_HOST
           value: unix:///var/run/docker.sock
         - name: RUNNER_WAIT_FOR_DOCKER_IN_SECONDS
           value: '120'
         volumeMounts:

@renovate renovate Bot force-pushed the renovate/ghcr.io-home-operations-actions-runner-2.x branch 3 times, most recently from 09cebb0 to 9d73f9d Compare March 27, 2026 21:05
@renovate renovate Bot changed the title feat(container): update image ghcr.io/home-operations/actions-runner ( 2.332.0 → 2.333.0 ) feat(container): update image ghcr.io/home-operations/actions-runner ( 2.332.0 → 2.333.1 ) Mar 27, 2026
@renovate renovate Bot force-pushed the renovate/ghcr.io-home-operations-actions-runner-2.x branch 4 times, most recently from b7dcf67 to 317b27b Compare April 6, 2026 08:45
@renovate renovate Bot force-pushed the renovate/ghcr.io-home-operations-actions-runner-2.x branch 2 times, most recently from 7136382 to 1a0213b Compare April 21, 2026 20:17
@renovate renovate Bot changed the title feat(container): update image ghcr.io/home-operations/actions-runner ( 2.332.0 → 2.333.1 ) feat(container): update image ghcr.io/home-operations/actions-runner ( 2.332.0 → 2.334.0 ) Apr 21, 2026
@renovate renovate Bot force-pushed the renovate/ghcr.io-home-operations-actions-runner-2.x branch 2 times, most recently from b39f8cc to b162a20 Compare April 29, 2026 11:08
@renovate renovate Bot force-pushed the renovate/ghcr.io-home-operations-actions-runner-2.x branch from b162a20 to 4826c92 Compare May 18, 2026 19:53
…( 2.332.0 → 2.334.0 )

| datasource | package                                | from    | to      |
| ---------- | -------------------------------------- | ------- | ------- |
| docker     | ghcr.io/home-operations/actions-runner | 2.332.0 | 2.334.0 |
@renovate renovate Bot force-pushed the renovate/ghcr.io-home-operations-actions-runner-2.x branch from 4826c92 to 4abf451 Compare May 22, 2026 22:43
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.

0 participants