From 3faf76d7c9e566ee3025e782d765b5b876c695d7 Mon Sep 17 00:00:00 2001 From: John Westcott IV Date: Mon, 6 Mar 2023 14:55:32 -0500 Subject: [PATCH] Changing github actions from ubuntu-18 to ubuntu-latest See https://github.com/actions/runner-images/issues/6002 for deprication warnings --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/devel.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b131f5813..21f1d5d69 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,7 +11,7 @@ on: jobs: molecule: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: molecule env: DOCKER_API_VERSION: "1.38" @@ -40,7 +40,7 @@ jobs: make kustomize KUSTOMIZE_PATH=$(readlink -f bin/kustomize) molecule test -s kind helm: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: helm steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/devel.yaml b/.github/workflows/devel.yaml index e7451b2aa..54865d49f 100644 --- a/.github/workflows/devel.yaml +++ b/.github/workflows/devel.yaml @@ -8,7 +8,7 @@ on: jobs: release: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest name: Push devel image steps: - uses: actions/checkout@v2