Skip to content
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

feat(container): update ghcr.io/onedr0p/actions-runner ( 2.315.0 → 2.316.0 ) #4582

Merged
merged 1 commit into from
Apr 24, 2024

Conversation

lumiere-bot[bot]
Copy link
Contributor

@lumiere-bot lumiere-bot bot commented Apr 23, 2024

This PR contains the following updates:

Package Update Change
ghcr.io/onedr0p/actions-runner (source) minor 2.315.0 -> 2.316.0

Warning

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


Release Notes

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

v2.316.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/runner@v2.315.0...v2.316.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.316.0/actions-runner-win-x64-2.316.0.zip -OutFile actions-runner-win-x64-2.316.0.zip

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

Warning: Windows arm64 runners are currently in preview status and use unofficial versions of nodejs. They are not intended for production workflows.

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.316.0/actions-runner-win-arm64-2.316.0.zip -OutFile actions-runner-win-arm64-2.316.0.zip

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

##### Extract the installer
tar xzf ./actions-runner-osx-x64-2.316.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.316.0/actions-runner-osx-arm64-2.316.0.tar.gz

##### Extract the installer
tar xzf ./actions-runner-osx-arm64-2.316.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.316.0/actions-runner-linux-x64-2.316.0.tar.gz

##### Extract the installer
tar xzf ./actions-runner-linux-x64-2.316.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.316.0/actions-runner-linux-arm64-2.316.0.tar.gz

##### Extract the installer
tar xzf ./actions-runner-linux-arm64-2.316.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.316.0/actions-runner-linux-arm-2.316.0.tar.gz

##### Extract the installer
tar xzf ./actions-runner-linux-arm-2.316.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.316.0.zip 9b2d0443d11ce5c2c4391d708576dc37b1ecf62edcceec7c0c9c8e6b4472b5a1
  • actions-runner-win-arm64-2.316.0.zip 7fb93a9b63aa76da722ead7b4a4e2404c11ed8620f9ae952a8aade27fed6eecd
  • actions-runner-osx-x64-2.316.0.tar.gz 41c63427093d61e2cb65c470d0955163442f23817a81fbadd46276179688e5ce
  • actions-runner-osx-arm64-2.316.0.tar.gz 8442d39e3d91b67807703ec0825cec4384837b583305ea43a495a9867b7222ca
  • actions-runner-linux-x64-2.316.0.tar.gz 64a47e18119f0c5d70e21b6050472c2af3f582633c9678d40cb5bcb852bcc18f
  • actions-runner-linux-arm64-2.316.0.tar.gz 03ea42d347d9ad2d875ea03c2321a0e6507c8575edaa6a75fbe8edfefe0e2a74
  • actions-runner-linux-arm-2.316.0.tar.gz 5059dda203b6b3b29bd591536b2d68231a425afc0fe022f27fd154ea6f441e23

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.

@lumiere-bot lumiere-bot bot requested a review from coolguy1771 as a code owner April 23, 2024 16:08
@lumiere-bot
Copy link
Contributor Author

lumiere-bot bot commented Apr 23, 2024

--- kubernetes/kyak/apps/actions-runner-system/gha-runner-scale-set/app Kustomization: flux-system/gha-runner-scale-set HelmRelease: actions-runner-system/gha-runner-scale-set

+++ kubernetes/kyak/apps/actions-runner-system/gha-runner-scale-set/app Kustomization: flux-system/gha-runner-scale-set HelmRelease: actions-runner-system/gha-runner-scale-set

@@ -42,13 +42,13 @@

     runnerScaleSetName: gha-runner-scale-set
     template:
       spec:
         containers:
         - command:
           - /home/runner/run.sh
-          image: ghcr.io/onedr0p/actions-runner:2.315.0@sha256:9e37504faa193a347e0d860a81b3dcbf0dc2570e57f9f1ce51740dba536dc547
+          image: ghcr.io/onedr0p/actions-runner:2.316.0@sha256:8610cd6909b7679dfb5e150ee74164ca8f9b627916a767ba055e00d16887d22a
           name: runner
   valuesFrom:
   - kind: Secret
     name: actions-runner-controller-auth-secret
     targetPath: githubConfigSecret.github_app_id
     valuesKey: ACTION_RUNNER_CONTROLLER_GITHUB_APP_ID

@lumiere-bot
Copy link
Contributor Author

lumiere-bot bot commented Apr 23, 2024

--- HelmRelease: actions-runner-system/gha-runner-scale-set AutoscalingRunnerSet: actions-runner-system/gha-runner-scale-set

+++ HelmRelease: actions-runner-system/gha-runner-scale-set AutoscalingRunnerSet: actions-runner-system/gha-runner-scale-set

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

     app.kubernetes.io/instance: gha-runner-scale-set
     app.kubernetes.io/managed-by: Helm
     app.kubernetes.io/part-of: gha-rs
     actions.github.com/scale-set-name: gha-runner-scale-set
     actions.github.com/scale-set-namespace: actions-runner-system
   annotations:
-    actions.github.com/values-hash: 525bd2ed340ed17b52153243a2b99c7efcacf71860f08b3756cce8d8e8e2e3a
+    actions.github.com/values-hash: 829e9e3c63cc33460c220136e05a97142b4b335a223c03d5d8f5afe2d84e82f
     actions.github.com/cleanup-github-secret-name: gha-runner-scale-set-gha-rs-github-secret
     actions.github.com/cleanup-manager-role-binding: gha-runner-scale-set-gha-rs-manager
     actions.github.com/cleanup-manager-role-name: gha-runner-scale-set-gha-rs-manager
     actions.github.com/cleanup-no-permission-service-account-name: gha-runner-scale-set-gha-rs-no-permission
 spec:
   githubConfigUrl: https://github.com/coolguy1771/home-ops
@@ -27,13 +27,13 @@

   template:
     spec:
       restartPolicy: Never
       serviceAccountName: gha-runner-scale-set-gha-rs-no-permission
       initContainers:
       - name: init-dind-externals
-        image: ghcr.io/onedr0p/actions-runner:2.315.0@sha256:9e37504faa193a347e0d860a81b3dcbf0dc2570e57f9f1ce51740dba536dc547
+        image: ghcr.io/onedr0p/actions-runner:2.316.0@sha256:8610cd6909b7679dfb5e150ee74164ca8f9b627916a767ba055e00d16887d22a
         command:
         - cp
         args:
         - -r
         - -v
         - /home/runner/externals/.
@@ -42,13 +42,13 @@

         - name: dind-externals
           mountPath: /home/runner/tmpDir
       containers:
       - name: runner
         command:
         - /home/runner/run.sh
-        image: ghcr.io/onedr0p/actions-runner:2.315.0@sha256:9e37504faa193a347e0d860a81b3dcbf0dc2570e57f9f1ce51740dba536dc547
+        image: ghcr.io/onedr0p/actions-runner:2.316.0@sha256:8610cd6909b7679dfb5e150ee74164ca8f9b627916a767ba055e00d16887d22a
         env:
         - name: DOCKER_HOST
           value: unix:///var/run/docker.sock
         - name: RUNNER_WAIT_FOR_DOCKER_IN_SECONDS
           value: '120'
         volumeMounts:

@coolguy1771 coolguy1771 merged commit b0190ac into main Apr 24, 2024
10 of 12 checks passed
@coolguy1771 coolguy1771 deleted the renovate/kyak-ghcr.io-onedr0p-actions-runner-2.x branch April 24, 2024 14:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant