From b0721b0a7aeac02614c32818c55df08667dc9372 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 3 Oct 2022 19:49:24 +0300 Subject: [PATCH] .github: use ubuntu-22.04 for actions Apparently 'ubuntu-latest' is still 20.04 and today is 2022-10-03, which seems a bit old! See: https://github.com/actions/runner-images --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 5c6596a..31ab62a 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -12,7 +12,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3