Skip to content

feat(container): update ghcr.io/home-operations/actions-runner ( 2.326.0 → 2.327.1 ) #4816

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 30, 2025

Conversation

mchesterbot[bot]
Copy link
Contributor

@mchesterbot mchesterbot bot commented Jul 22, 2025

This PR contains the following updates:

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

Release Notes

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

v2.327.1

Compare Source

What's Changed
New Contributors

Full Changelog: actions/runner@v2.326.0...v2.327.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.327.1/actions-runner-win-x64-2.327.1.zip -OutFile actions-runner-win-x64-2.327.1.zip

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

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

##### Extract the installer
tar xzf ./actions-runner-osx-x64-2.327.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.327.1/actions-runner-osx-arm64-2.327.1.tar.gz

##### Extract the installer
tar xzf ./actions-runner-osx-arm64-2.327.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.327.1/actions-runner-linux-x64-2.327.1.tar.gz

##### Extract the installer
tar xzf ./actions-runner-linux-x64-2.327.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.327.1/actions-runner-linux-arm64-2.327.1.tar.gz

##### Extract the installer
tar xzf ./actions-runner-linux-arm64-2.327.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.327.1/actions-runner-linux-arm-2.327.1.tar.gz

##### Extract the installer
tar xzf ./actions-runner-linux-arm-2.327.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.327.1.zip 7179db618e7f79e0ce63d96b15f3b6cf6e69996b2094f7f02208b7786c50b6a3
  • actions-runner-win-arm64-2.327.1.zip 615ccbbe4880f9c09ee2878431b100e62cfced000e9b3a0886a8130335e13e5d
  • actions-runner-osx-x64-2.327.1.tar.gz a0cb80fb6baacf5c669ccd5c2f64429033a7b4dac1e020b4231a4fc5ff396b76
  • actions-runner-osx-arm64-2.327.1.tar.gz 807f875f4a357a9c919b484329c072e885ef2c041a18d3107cf1a1e5932eecc0
  • actions-runner-linux-x64-2.327.1.tar.gz d68ac1f500b747d1271d9e52661c408d56cffd226974f68b7dc813e30b9e0575
  • actions-runner-linux-arm64-2.327.1.tar.gz 16102096988246f250a745c6a813a5a0b8901e2f554f9440c97e8573fd4da111
  • actions-runner-linux-arm-2.327.1.tar.gz b6f34af6d11f5f023fe23aa8bcb01f392eaad30d70e1e31f4e68bbdbb315eda8

v2.327.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/runner@v2.326.0...v2.327.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.327.0/actions-runner-win-x64-2.327.0.zip -OutFile actions-runner-win-x64-2.327.0.zip

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

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

##### Extract the installer
tar xzf ./actions-runner-osx-x64-2.327.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.327.0/actions-runner-osx-arm64-2.327.0.tar.gz

##### Extract the installer
tar xzf ./actions-runner-osx-arm64-2.327.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.327.0/actions-runner-linux-x64-2.327.0.tar.gz

##### Extract the installer
tar xzf ./actions-runner-linux-x64-2.327.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.327.0/actions-runner-linux-arm64-2.327.0.tar.gz

##### Extract the installer
tar xzf ./actions-runner-linux-arm64-2.327.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.327.0/actions-runner-linux-arm-2.327.0.tar.gz

##### Extract the installer
tar xzf ./actions-runner-linux-arm-2.327.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.327.0.zip 98588fe278e68b8988ea4fad7d0233a4544592b5d2ee09ed8f73f9a0c86d0190
  • actions-runner-win-arm64-2.327.0.zip efcc44a40ce612ee3b0d4928a9325df3689911d59559d20b3902434399b65bac
  • actions-runner-osx-x64-2.327.0.tar.gz 2e9f16999a83f39969186e76abb2ba726c04e11dc98986de7d9e494fe0236d0f
  • actions-runner-osx-arm64-2.327.0.tar.gz dd0753890663023646d7c9739f9fd2b4b85dadbdc023bfacc688dda8fa7b16f5
  • actions-runner-linux-x64-2.327.0.tar.gz 697deac53b39b72396c6fe3fe3b10bdc05cf59c12e82295a2e6decc53ca7d3e4
  • actions-runner-linux-arm64-2.327.0.tar.gz 5d41da47727514b3ee77974362171582b791f600b2a4e74b2fe3decb52f8d0c1
  • actions-runner-linux-arm-2.327.0.tar.gz f73583e4b80917ba84977eeae2fa9c09b030cde97461f71e5414deba5291a8dd

Configuration

📅 Schedule: 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 has been generated by Renovate Bot.

@mchesterbot mchesterbot bot requested a review from mchestr as a code owner July 22, 2025 20:09
@mchesterbot mchesterbot bot added renovate/container type/minor area/kubernetes Changes made in the kubernetes directory labels Jul 22, 2025
@mchesterbot
Copy link
Contributor Author

mchesterbot bot commented Jul 22, 2025

--- kubernetes/apps/actions-runner-system/actions-runner-controller/runners Kustomization: actions-runner-system/actions-runner-controller-runners HelmRelease: actions-runner-system/home-cluster-runner

+++ kubernetes/apps/actions-runner-system/actions-runner-controller/runners Kustomization: actions-runner-system/actions-runner-controller-runners HelmRelease: actions-runner-system/home-cluster-runner

@@ -51,13 +51,13 @@

           - name: ACTIONS_RUNNER_REQUIRE_JOB_CONTAINER
             value: 'false'
           - name: NODE
             valueFrom:
               fieldRef:
                 fieldPath: status.hostIP
-          image: ghcr.io/home-operations/actions-runner:2.326.0@sha256:547f2c0253322b518538d3ea4e9fc39c90fbb456f48895c2d6f1dcc3d87f56e5
+          image: ghcr.io/home-operations/actions-runner:2.327.1@sha256:f44ed890fd0672a2371ce3f03d25851b64e7236e94512a6e159659ac35ac45c5
           name: runner
           volumeMounts:
           - mountPath: /var/run/secrets/talos.dev
             name: talos
             readOnly: true
         serviceAccountName: home-cluster-runner

@mchesterbot
Copy link
Contributor Author

mchesterbot bot commented Jul 22, 2025

--- HelmRelease: actions-runner-system/home-cluster-runner AutoscalingRunnerSet: actions-runner-system/home-cluster-runner

+++ HelmRelease: actions-runner-system/home-cluster-runner AutoscalingRunnerSet: actions-runner-system/home-cluster-runner

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

     app.kubernetes.io/instance: home-cluster-runner
     app.kubernetes.io/managed-by: Helm
     app.kubernetes.io/part-of: gha-rs
     actions.github.com/scale-set-name: home-cluster-runner
     actions.github.com/scale-set-namespace: actions-runner-system
   annotations:
-    actions.github.com/values-hash: 7ba12f1d4e7df1d1487e8d789e51b4695d4685b893ea8ad5d7b73535a7eb5cb
+    actions.github.com/values-hash: 762953c9380ecdc65693341ee8ca80c422ee95bd04fe64e317c4bd2c37d1d4a
     actions.github.com/cleanup-manager-role-binding: home-cluster-runner-gha-rs-manager
     actions.github.com/cleanup-manager-role-name: home-cluster-runner-gha-rs-manager
 spec:
   githubConfigUrl: https://github.com/mchestr/home-cluster
   githubConfigSecret: home-cluster-runner-secret
   maxRunners: 3
@@ -26,13 +26,13 @@

       restartPolicy: Never
       serviceAccountName: home-cluster-runner
       containers:
       - name: runner
         command:
         - /home/runner/run.sh
-        image: ghcr.io/home-operations/actions-runner:2.326.0@sha256:547f2c0253322b518538d3ea4e9fc39c90fbb456f48895c2d6f1dcc3d87f56e5
+        image: ghcr.io/home-operations/actions-runner:2.327.1@sha256:f44ed890fd0672a2371ce3f03d25851b64e7236e94512a6e159659ac35ac45c5
         env:
         - name: ACTIONS_RUNNER_REQUIRE_JOB_CONTAINER
           value: 'false'
         - name: NODE
           valueFrom:
             fieldRef:

@mchesterbot mchesterbot bot force-pushed the renovate/ghcr.io-home-operations-actions-runner-2.x branch 5 times, most recently from e28c26f to 2885622 Compare July 25, 2025 17:10
@mchesterbot mchesterbot bot changed the title feat(container): update ghcr.io/home-operations/actions-runner ( 2.326.0 → 2.327.0 ) feat(container): update ghcr.io/home-operations/actions-runner ( 2.326.0 → 2.327.1 ) Jul 25, 2025
@mchesterbot mchesterbot bot force-pushed the renovate/ghcr.io-home-operations-actions-runner-2.x branch from 2885622 to 16c861c Compare July 28, 2025 09:14
@mchestr mchestr merged commit e329842 into main Jul 30, 2025
14 checks passed
@mchestr mchestr deleted the renovate/ghcr.io-home-operations-actions-runner-2.x branch July 30, 2025 00:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/kubernetes Changes made in the kubernetes directory renovate/container type/minor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant