From ff8e121fac888b7f6c3fb7141d931421a7782ccf Mon Sep 17 00:00:00 2001 From: Matthieu Darbois Date: Sun, 11 Dec 2022 10:48:12 +0100 Subject: [PATCH] fix(ci): use ubuntu-20.04 for update workfow (#1370) ubuntu-latest / 22.04 does not have python 3.6, use ubuntu-20.04 instead. --- .github/workflows/update-dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-dependencies.yml b/.github/workflows/update-dependencies.yml index 50d940c6f..414c460a3 100644 --- a/.github/workflows/update-dependencies.yml +++ b/.github/workflows/update-dependencies.yml @@ -18,7 +18,7 @@ jobs: update-dependencies: name: Update dependencies if: github.repository_owner == 'pypa' || github.event_name != 'schedule' - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3