From eba72d5d4a44923a3d8d950fe197292168cdfae2 Mon Sep 17 00:00:00 2001 From: Thomas Nelson Date: Thu, 9 Jan 2025 19:54:19 -0600 Subject: [PATCH] Use Ubuntu 22.04 on Github Actions The new default '24.04', removes a ton of tools from the image: https://github.com/actions/runner-images/issues/10636 --- .github/workflows/cicd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index cbc4816..64a76f6 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2