From 3e04828f478ddd26afb13d41f9c9b9638aff9021 Mon Sep 17 00:00:00 2001 From: Skyler Slade Date: Fri, 17 Jan 2025 18:10:35 +0000 Subject: [PATCH] Downgrade to previous Ubuntu version, which is LTS Recently, ubuntu-latest was updated to 24.04. This doesn't work with the version of setup-ruby that we use. Rather than debug that, downgrade to the previous version of Ubuntu which is LTS and supported for 2 years according to this doc: https://github.com/actions/runner-images/issues/10636. setup-ruby should probably be updated at some point soon because our pinned version is 2+ years old. --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 21805f4e..dd6f57da 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -37,7 +37,7 @@ concurrency: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Retrieve commit history uses: actions/checkout@v3 @@ -77,7 +77,7 @@ jobs: uses: actions/upload-pages-artifact@v1 deploy: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: build environment: name: github-pages