From e179fd02d083aee12e05c8fc8d009d02e289e29f Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Fri, 21 Aug 2026 06:43:52 -0400 Subject: [PATCH] Pin release workflow runners to ubuntu-24.04 The release, docker, and Homebrew jobs ran on ubuntu-latest, which migrates across Ubuntu major versions on GitHub's schedule. Pin to ubuntu-24.04, the image ubuntu-latest resolved to in the last green release run, matching the explicit runner labels used elsewhere. Co-Authored-By: Claude Fable 5 --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a643070f0..6900c4dea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -138,7 +138,7 @@ jobs: release: name: Release needs: compile - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 permissions: contents: write steps: @@ -166,7 +166,7 @@ jobs: docker: name: Docker image needs: compile - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 permissions: contents: read packages: write @@ -259,7 +259,7 @@ jobs: name: Update Homebrew Formula needs: release if: ${{ !contains(github.ref_name, '-') }} - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 environment: release permissions: contents: read @@ -308,7 +308,7 @@ jobs: name: Update Homebrew Nightly Formula needs: release if: ${{ contains(github.ref_name, '-') }} - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 environment: release permissions: contents: read