From 6efe0266295317e81f9ea73e7c0286702b4384a8 Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Sun, 15 Dec 2024 10:46:57 +0300 Subject: [PATCH] Try and run deploy explicitly on ubuntu-24.04 This addresses an annotation by GitHub: ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636 --- .github/workflows/test_and_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 4e670a96..89d56e75 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -57,7 +57,7 @@ jobs: deploy: name: Deploy needs: test - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 environment: production if: github.ref == 'refs/heads/main' concurrency: deploy-group # optional: ensure only one action runs at a time