From 9ef204ac05ba914c0e4d8fb9f1a2b72b59aa0c28 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Fri, 14 Apr 2023 09:05:08 -0700 Subject: [PATCH] Use ubuntu-latest for GitHub CI actions. ubuntu-18.04 is no longer available and switching to latest avoids having to update this in the future. --- .github/workflows/compile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index f35f3efd..a9328fdd 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -11,7 +11,7 @@ env: jobs: build: - runs-on: [ubuntu-20.04] + runs-on: [ubuntu-latest] steps: - uses: actions/checkout@v3 - name: Basic checks @@ -29,7 +29,7 @@ jobs: draft-release: if: github.event_name == 'push' && github.ref == 'refs/heads/main' needs: build - runs-on: [ubuntu-18.04] + runs-on: [ubuntu-latest] steps: - name: Download artifact uses: actions/download-artifact@master