From e47d44657611f9d814d8d7379c8482e5d9230ad1 Mon Sep 17 00:00:00 2001 From: Ethan Paul Date: Wed, 4 Dec 2024 22:44:55 -0500 Subject: [PATCH] Update github actions to use ubuntu 24 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf5da8500..f8cbb3b73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: [push, pull_request, workflow_call] jobs: lint: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 # We use a standard Debian image to mirror a typical developer environment. # This should be updated whenever a new Debian stable version is available. container: debian:bookworm @@ -19,7 +19,7 @@ jobs: run: | make docs-lint build: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 with: