[PR #12] [MERGED] chore(deps): update application container images #30

Closed
opened 2026-06-08 09:03:29 +00:00 by ryangr0 · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/webgrip/infrastructure/pull/12
Author: @webgrip-renovate[bot]
Created: 2/24/2026
Status: Merged
Merged: 3/1/2026
Merged by: @Ryangr0

Base: mainHead: renovate/application-container-images


📝 Commits (1)

  • c7963db chore(deps): update application container images

📊 Changes

3 files changed (+3 additions, -3 deletions)

View changed files

📝 ops/docker/github-runner/Dockerfile (+1 -1)
📝 ops/docker/php-ci-runner/Dockerfile (+1 -1)
📝 ops/docker/rust-ci-runner/Dockerfile (+1 -1)

📄 Description

This PR contains the following updates:

Package Type Update Change
debian final digest 98f4b7174d56e3
ghcr.io/actions/actions-runner final minor 2.331.02.332.0
node final pinDigest dd9d219
php final digest 7c99b9b2d7a7e0
rust stage minor 1.87.0-slim-bookworm1.93.1-slim-bookworm

Release Notes

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

v2.332.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.331.0...v2.332.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.332.0/actions-runner-win-x64-2.332.0.zip -OutFile actions-runner-win-x64-2.332.0.zip

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

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

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.332.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.332.0/actions-runner-osx-arm64-2.332.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.332.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.332.0/actions-runner-linux-x64-2.332.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.332.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.332.0/actions-runner-linux-arm64-2.332.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.332.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.332.0/actions-runner-linux-arm-2.332.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.332.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.332.0.zip 83e56e05b21eb58c9697f82e52c53b30867335ff039cd5d44d1a1a24d2149f4b
  • actions-runner-win-arm64-2.332.0.zip e7dced5dcf8e8492ec24eb16446047ddccecdb55625f9f6738a96fa9da1bd7f6
  • actions-runner-osx-x64-2.332.0.tar.gz 99755a4f48d81da8d6a59bad6a3216a49394f41d2c842c39f921a1592d7d0733
  • actions-runner-osx-arm64-2.332.0.tar.gz d53bedb30619a64e751bb9f729cc9e9b35eb1df5361651d54daae00db33f2e73
  • actions-runner-linux-x64-2.332.0.tar.gz f2094522a6b9afeab07ffb586d1eb3f190b6457074282796c497ce7dce9e0f2a
  • actions-runner-linux-arm64-2.332.0.tar.gz b72f0599cdbd99dd9513ab64fcb59e424fc7359c93b849e8f5efdd5a72f743a6
  • actions-runner-linux-arm-2.332.0.tar.gz 84ac6dda50f941c7bc4952a20af0c4147caa96bdb2cb2494e7a5eb630d63753b

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Renovate Bot.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/webgrip/infrastructure/pull/12 **Author:** [@webgrip-renovate[bot]](https://github.com/apps/webgrip-renovate) **Created:** 2/24/2026 **Status:** ✅ Merged **Merged:** 3/1/2026 **Merged by:** [@Ryangr0](https://github.com/Ryangr0) **Base:** `main` ← **Head:** `renovate/application-container-images` --- ### 📝 Commits (1) - [`c7963db`](https://github.com/webgrip/infrastructure/commit/c7963db820c121b7093d97e4540bacafababb9f0) chore(deps): update application container images ### 📊 Changes **3 files changed** (+3 additions, -3 deletions) <details> <summary>View changed files</summary> 📝 `ops/docker/github-runner/Dockerfile` (+1 -1) 📝 `ops/docker/php-ci-runner/Dockerfile` (+1 -1) 📝 `ops/docker/rust-ci-runner/Dockerfile` (+1 -1) </details> ### 📄 Description This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | debian | final | digest | `98f4b71` → `74d56e3` | | [ghcr.io/actions/actions-runner](https://redirect.github.com/actions/runner) | final | minor | `2.331.0` → `2.332.0` | | [node](https://redirect.github.com/nodejs/node) | final | pinDigest | → `dd9d219` | | php | final | digest | `7c99b9b` → `2d7a7e0` | | rust | stage | minor | `1.87.0-slim-bookworm` → `1.93.1-slim-bookworm` | --- ### Release Notes <details> <summary>actions/runner (ghcr.io/actions/actions-runner)</summary> ### [`v2.332.0`](https://redirect.github.com/actions/runner/releases/tag/v2.332.0) [Compare Source](https://redirect.github.com/actions/runner/compare/v2.331.0...v2.332.0) #### What's Changed - chore: update Node versions by [@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot] in [#&#8203;4200](https://redirect.github.com/actions/runner/pull/4200) - Update dotnet sdk to latest version [@&#8203;8](https://redirect.github.com/8).0.417 by [@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot] in [#&#8203;4201](https://redirect.github.com/actions/runner/pull/4201) - Bump System.Formats.Asn1 and System.Security.Cryptography.Pkcs by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in [#&#8203;4202](https://redirect.github.com/actions/runner/pull/4202) - Allow empty container options by [@&#8203;ericsciple](https://redirect.github.com/ericsciple) in [#&#8203;4208](https://redirect.github.com/actions/runner/pull/4208) - Update Docker to v29.1.5 and Buildx to v0.31.0 by [@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot] in [#&#8203;4212](https://redirect.github.com/actions/runner/pull/4212) - Report job level annotations by [@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in [#&#8203;4216](https://redirect.github.com/actions/runner/pull/4216) - Fix local action display name showing `Run /./` instead of `Run ./` by [@&#8203;ericsciple](https://redirect.github.com/ericsciple) in [#&#8203;4218](https://redirect.github.com/actions/runner/pull/4218) - Update Docker to v29.2.0 and Buildx to v0.31.1 by [@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot] in [#&#8203;4219](https://redirect.github.com/actions/runner/pull/4219) - Add support for libssl3 and libssl3t64 for newer Debian/Ubuntu versions by [@&#8203;nekketsuuu](https://redirect.github.com/nekketsuuu) in [#&#8203;4213](https://redirect.github.com/actions/runner/pull/4213) - Validate work dir during runner start up. by [@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in [#&#8203;4227](https://redirect.github.com/actions/runner/pull/4227) - Bump hook to 0.8.1 by [@&#8203;nikola-jokic](https://redirect.github.com/nikola-jokic) in [#&#8203;4222](https://redirect.github.com/actions/runner/pull/4222) - Support return job result as exitcode in hosted runner. by [@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in [#&#8203;4233](https://redirect.github.com/actions/runner/pull/4233) - Add telemetry tracking for deprecated set-output and save-state commands by [@&#8203;ericsciple](https://redirect.github.com/ericsciple) in [#&#8203;4221](https://redirect.github.com/actions/runner/pull/4221) - Fix parser comparison mismatches by [@&#8203;ericsciple](https://redirect.github.com/ericsciple) in [#&#8203;4220](https://redirect.github.com/actions/runner/pull/4220) - Remove unnecessary connection test during some registration flows by [@&#8203;zarenner](https://redirect.github.com/zarenner) in [#&#8203;4244](https://redirect.github.com/actions/runner/pull/4244) - chore: update Node versions by [@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot] in [#&#8203;4249](https://redirect.github.com/actions/runner/pull/4249) - Update dotnet sdk to latest version [@&#8203;8](https://redirect.github.com/8).0.418 by [@&#8203;github-actions](https://redirect.github.com/github-actions)\[bot] in [#&#8203;4250](https://redirect.github.com/actions/runner/pull/4250) - Fix link to SECURITY.md in README by [@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in [#&#8203;4253](https://redirect.github.com/actions/runner/pull/4253) - Try to infer runner is on hosted/ghes when githuburl is empty. by [@&#8203;TingluoHuang](https://redirect.github.com/TingluoHuang) in [#&#8203;4254](https://redirect.github.com/actions/runner/pull/4254) - Add Node.js 20 deprecation warning annotation (Phase 1) by [@&#8203;salmanmkc](https://redirect.github.com/salmanmkc) in [#&#8203;4242](https://redirect.github.com/actions/runner/pull/4242) - Update Node.js 20 deprecation date to June 2nd, 2026 by [@&#8203;salmanmkc](https://redirect.github.com/salmanmkc) in [#&#8203;4258](https://redirect.github.com/actions/runner/pull/4258) - Composite Action Step Markers by [@&#8203;ericsciple](https://redirect.github.com/ericsciple) in [#&#8203;4243](https://redirect.github.com/actions/runner/pull/4243) - Symlink actions cache by [@&#8203;paveliak](https://redirect.github.com/paveliak) in [#&#8203;4260](https://redirect.github.com/actions/runner/pull/4260) - Bump minimatch in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in [#&#8203;4261](https://redirect.github.com/actions/runner/pull/4261) - Bump [@&#8203;stylistic/eslint-plugin](https://redirect.github.com/stylistic/eslint-plugin) from 3.1.0 to 5.9.0 in /src/Misc/expressionFunc/hashFiles by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in [#&#8203;4257](https://redirect.github.com/actions/runner/pull/4257) #### New Contributors - [@&#8203;nekketsuuu](https://redirect.github.com/nekketsuuu) made their first contribution in [#&#8203;4213](https://redirect.github.com/actions/runner/pull/4213) - [@&#8203;zarenner](https://redirect.github.com/zarenner) made their first contribution in [#&#8203;4244](https://redirect.github.com/actions/runner/pull/4244) **Full Changelog**: <https://github.com/actions/runner/compare/v2.331.0...v2.332.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.332.0/actions-runner-win-x64-2.332.0.zip -OutFile actions-runner-win-x64-2.332.0.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.332.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.332.0/actions-runner-win-arm64-2.332.0.zip -OutFile actions-runner-win-arm64-2.332.0.zip # Extract the installer Add-Type -AssemblyName System.IO.Compression.FileSystem ; [System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.332.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.332.0/actions-runner-osx-x64-2.332.0.tar.gz # Extract the installer tar xzf ./actions-runner-osx-x64-2.332.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.332.0/actions-runner-osx-arm64-2.332.0.tar.gz # Extract the installer tar xzf ./actions-runner-osx-arm64-2.332.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.332.0/actions-runner-linux-x64-2.332.0.tar.gz # Extract the installer tar xzf ./actions-runner-linux-x64-2.332.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.332.0/actions-runner-linux-arm64-2.332.0.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm64-2.332.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.332.0/actions-runner-linux-arm-2.332.0.tar.gz # Extract the installer tar xzf ./actions-runner-linux-arm-2.332.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.332.0.zip <!-- BEGIN SHA win-x64 -->83e56e05b21eb58c9697f82e52c53b30867335ff039cd5d44d1a1a24d2149f4b<!-- END SHA win-x64 --> - actions-runner-win-arm64-2.332.0.zip <!-- BEGIN SHA win-arm64 -->e7dced5dcf8e8492ec24eb16446047ddccecdb55625f9f6738a96fa9da1bd7f6<!-- END SHA win-arm64 --> - actions-runner-osx-x64-2.332.0.tar.gz <!-- BEGIN SHA osx-x64 -->99755a4f48d81da8d6a59bad6a3216a49394f41d2c842c39f921a1592d7d0733<!-- END SHA osx-x64 --> - actions-runner-osx-arm64-2.332.0.tar.gz <!-- BEGIN SHA osx-arm64 -->d53bedb30619a64e751bb9f729cc9e9b35eb1df5361651d54daae00db33f2e73<!-- END SHA osx-arm64 --> - actions-runner-linux-x64-2.332.0.tar.gz <!-- BEGIN SHA linux-x64 -->f2094522a6b9afeab07ffb586d1eb3f190b6457074282796c497ce7dce9e0f2a<!-- END SHA linux-x64 --> - actions-runner-linux-arm64-2.332.0.tar.gz <!-- BEGIN SHA linux-arm64 -->b72f0599cdbd99dd9513ab64fcb59e424fc7359c93b849e8f5efdd5a72f743a6<!-- END SHA linux-arm64 --> - actions-runner-linux-arm-2.332.0.tar.gz <!-- BEGIN SHA linux-arm -->84ac6dda50f941c7bc4952a20af0c4147caa96bdb2cb2494e7a5eb630d63753b<!-- END SHA linux-arm --> </details> --- ### 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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My40LjIiLCJ1cGRhdGVkSW5WZXIiOiI0My40LjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY2llcyJdfQ==--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
ryangr0 2026-06-08 09:03:29 +00:00
Sign in to join this conversation.
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
webgrip/infrastructure#30
No description provided.