From 7b359a53c7c4aa12444330472f6d75b702bf8272 Mon Sep 17 00:00:00 2001 From: Ryan Chung Date: Wed, 16 Apr 2025 23:25:48 -0400 Subject: [PATCH 1/3] chore: update github actions images The ubuntu-20.04 image for GitHub Actions is now deprecated, failing our CI/CD. Information can be found here: https://github.com/actions/runner-images/issues/11101 This PR updates images to always use the latest ubuntu image so this is no longer a problem. --- .github/workflows/gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index a54d656928..325a14f01e 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -8,7 +8,7 @@ on: jobs: deploy: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: From 59daca98708cd5534581e9903ca80e70c7804d84 Mon Sep 17 00:00:00 2001 From: Ryan Chung Date: Wed, 16 Apr 2025 23:26:28 -0400 Subject: [PATCH 2/3] chore: update hugo-preview.yml --- .github/workflows/hugo-preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hugo-preview.yml b/.github/workflows/hugo-preview.yml index 0dda5637e4..84f03b6b60 100644 --- a/.github/workflows/hugo-preview.yml +++ b/.github/workflows/hugo-preview.yml @@ -5,7 +5,7 @@ on: jobs: build_preview: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 From 12b5f648b3b8ecc091e49c0bb85547c816ccf20b Mon Sep 17 00:00:00 2001 From: Ryan Chung Date: Wed, 16 Apr 2025 23:32:02 -0400 Subject: [PATCH 3/3] chore: revert hugo-preview.yml --- .github/workflows/hugo-preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/hugo-preview.yml b/.github/workflows/hugo-preview.yml index 84f03b6b60..0dda5637e4 100644 --- a/.github/workflows/hugo-preview.yml +++ b/.github/workflows/hugo-preview.yml @@ -5,7 +5,7 @@ on: jobs: build_preview: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3