Skip to content

chore(deps): update application container images#14

Open
webgrip-renovate[bot] wants to merge 1 commit intomainfrom
renovate/application-container-images
Open

chore(deps): update application container images#14
webgrip-renovate[bot] wants to merge 1 commit intomainfrom
renovate/application-container-images

Conversation

@webgrip-renovate
Copy link
Copy Markdown
Contributor

@webgrip-renovate webgrip-renovate bot commented Mar 13, 2026

This PR contains the following updates:

Package Type Update Change
composer stage digest f080973698d380
debian final digest 74d56e34724b8c
ghcr.io/actions/actions-runner final patch 2.333.02.333.1
node final pinDigest f3a68cf
php final digest 2d7a7e0b9c6531
rust stage minor 1.87.0-slim-bookworm1.94.1-slim-bookworm

Release Notes

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

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: 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.

@webgrip-renovate webgrip-renovate bot force-pushed the renovate/application-container-images branch from 889ff87 to 982a2d2 Compare March 13, 2026 04:07
@webgrip-renovate webgrip-renovate bot changed the title chore(deps): pin dependencies chore(deps): update application container images Mar 13, 2026
@webgrip-renovate webgrip-renovate bot force-pushed the renovate/application-container-images branch 5 times, most recently from fdf9e22 to fba62df Compare March 18, 2026 18:04
@webgrip-renovate webgrip-renovate bot force-pushed the renovate/application-container-images branch 2 times, most recently from aec69b3 to 4704853 Compare March 27, 2026 18:07
@webgrip-renovate webgrip-renovate bot force-pushed the renovate/application-container-images branch 8 times, most recently from 9b49441 to a3b343b Compare April 10, 2026 10:05
| datasource | package                        | from    | to      |
| ---------- | ------------------------------ | ------- | ------- |
| docker     | ghcr.io/actions/actions-runner | 2.333.0 | 2.333.1 |
| docker     | rust                           | 1.87.0  | 1.94.1  |
@webgrip-renovate webgrip-renovate bot force-pushed the renovate/application-container-images branch from a3b343b to cc6b219 Compare April 12, 2026 14:06
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