From 93ac93b58f23a2b7e4450cbe8819f5a36d319af7 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Fri, 25 Nov 2022 16:51:39 +0000 Subject: [PATCH] CI: test on Ubuntu-20.04, not Ubuntu-2004 (#100) Fixes a typo in https://github.com/python/typing_extensions/commit/5f9258d1efd5d8e4900ffc23ba2486240f2a2f35. We might have to wait a while before Ubuntu-2004 is released :) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da13df17..c451adcc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: # https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json python-version: ["3.7", "3.7.1", "3.8", "3.8.0", "3.9", "3.9.0", "3.10", "3.10.0", "3.11-dev", "pypy3.9"] - runs-on: ubuntu-2004 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3