From 3ba8ef967e771c8e4e0ba3e7976c8baabe4d494e Mon Sep 17 00:00:00 2001 From: JAEGYUN JUNG Date: Thu, 3 Apr 2025 02:35:29 +0900 Subject: [PATCH] Update GitHub Actions to use Ubuntu 22.04 for testing (#9677) --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fe31e727a..bf158311a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ on: jobs: tests: name: Python ${{ matrix.python-version }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 strategy: matrix: @@ -50,7 +50,7 @@ jobs: test-docs: name: Test documentation links - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4