cloud-run-samples icon indicating copy to clipboard operation
cloud-run-samples copied to clipboard

chore(deps): update ghcr.io/actions/actions-runner docker tag to v2.330.0

Open renovate-bot opened this issue 1 month ago • 2 comments

This PR contains the following updates:

Package Type Update Change
ghcr.io/actions/actions-runner final minor 2.329.0 -> 2.330.0

Release Notes

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

v2.330.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/actions/runner/compare/v2.329.0...v2.330.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.330.0/actions-runner-win-x64-2.330.0.zip -OutFile actions-runner-win-x64-2.330.0.zip

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

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

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.330.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.330.0/actions-runner-osx-arm64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.330.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.330.0/actions-runner-linux-x64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.330.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.330.0/actions-runner-linux-arm64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.330.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.330.0/actions-runner-linux-arm-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.330.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.330.0.zip a7469e7f2949657327fdd75688fd8858e1352202847d024d68b93de033990779
  • actions-runner-win-arm64-2.330.0.zip d6b713c83263e2498931488079a3a20770d4a205a47fac51da86026e45754596
  • actions-runner-osx-x64-2.330.0.tar.gz 40a32b7b87e25b76b595e201e0af376fcb1c3b7838fe21452909756090473ea9
  • actions-runner-osx-arm64-2.330.0.tar.gz e7515e45f6de15e37e6f1667bb2f962fb535a86689af1f9b219860300d06de1b
  • actions-runner-linux-x64-2.330.0.tar.gz af5c33fa94f3cc33b8e97937939136a6b04197e6dadfcfb3b6e33ae1bf41e79a
  • actions-runner-linux-arm64-2.330.0.tar.gz 9cb43527912086c7c8fb4119cb06409fcbcbd6f93a2d8507f30b07c495620f5c
  • actions-runner-linux-arm-2.330.0.tar.gz 2bb261a52054e08cbfe899a47e7a8ce97267eb73bc30282cc718d2620b320f6a

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 this update again.


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

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

renovate-bot avatar Nov 19 '25 15:11 renovate-bot

/gcbrun

dpebot avatar Nov 19 '25 15:11 dpebot

Summary of Changes

Hello @renovate-bot, I'm Gemini Code Assist[^1]! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request automates the process of keeping the GitHub Actions self-hosted runner Docker image up-to-date. By updating the base image to v2.330.0, the project ensures it leverages the latest enhancements, security patches, and features from the actions/runner project, maintaining compatibility and performance for CI/CD workflows.

Highlights

  • Docker Image Update: The ghcr.io/actions/actions-runner Docker image has been updated from version 2.329.0 to 2.330.0.
  • Minor Version Bump: This update constitutes a minor version increment, bringing in new features, bug fixes, and dependency updates from the upstream actions/runner project.
  • Release Notes Included: Detailed release notes for v2.330.0 are provided, outlining changes such as preflight checks for custom images, .NET SDK updates, Node version updates, various dependency bumps (e.g., actions/download-artifact, actions/upload-artifact), and improvements to runner stability (e.g., network online check, DNS resolution retry).
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with :thumbsup: and :thumbsdown: on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

[^1]: Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

gemini-code-assist[bot] avatar Nov 19 '25 15:11 gemini-code-assist[bot]