From 799eed4a36ad46d8c18063e8b18d3006a6bb595f Mon Sep 17 00:00:00 2001 From: Ricardo Baratto Date: Thu, 15 May 2025 00:04:09 -0400 Subject: [PATCH] switch github actions to run on ubuntu 22.04 the 20.04 runner was deprecated and removed: https://github.com/actions/runner-images/issues/11101 --- .github/workflows/run_mypy.yaml | 2 +- .github/workflows/run_pycodestyle.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_mypy.yaml b/.github/workflows/run_mypy.yaml index 2ca1df6..1f955bd 100644 --- a/.github/workflows/run_mypy.yaml +++ b/.github/workflows/run_mypy.yaml @@ -5,7 +5,7 @@ on: [pull_request, push] jobs: run_mypy: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v1 diff --git a/.github/workflows/run_pycodestyle.yaml b/.github/workflows/run_pycodestyle.yaml index 185c86a..9843681 100644 --- a/.github/workflows/run_pycodestyle.yaml +++ b/.github/workflows/run_pycodestyle.yaml @@ -5,7 +5,7 @@ on: [pull_request, push] jobs: run_pycodestyle: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v1