From 67673a422235fa0733e1aee9931b5aafe78032ff Mon Sep 17 00:00:00 2001 From: Shubham Shinde Date: Fri, 18 Oct 2024 14:21:30 +0530 Subject: [PATCH] Reinstate Ubuntu-2004 github actions runner image for nightly tests. - This is done because Centos-7, OracleLinux-7 and Scientific-7 are not getting provisioned on the ubuntu-2204 github runner image resulting in nightly job failures. This might be due to the EOL status of EL-7 based images. --- .github/workflows/ci.yml | 4 +++- .github/workflows/nightly.yml | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a5738adb..900fda16 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: branches: - "main" workflow_dispatch: - + jobs: Spec: uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main" @@ -15,3 +15,5 @@ jobs: needs: Spec uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main" secrets: "inherit" + with: + runs_on: "ubuntu-20.04" diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 1b06c471..aaa4967f 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -14,3 +14,5 @@ jobs: needs: Spec uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main" secrets: "inherit" + with: + runs_on: "ubuntu-20.04"