From: Alexander Popov Date: Thu, 8 Dec 2022 22:29:03 +0000 (+0300) Subject: Fix `python-version` in the GitHub Actions X-Git-Tag: v0.6.1~40 X-Git-Url: https://jxself.org/git/?a=commitdiff_plain;h=ec61cf0e4fec9456b83524f51dbf2685cfe03067;p=kconfig-hardened-check.git Fix `python-version` in the GitHub Actions Current `ubuntu-latest` (Ubuntu 22.04 for x86_64) provides the following versions of Python: - 3.10.8 - 3.11.0 - 3.7.15 - 3.8.15 - 3.9.15 --- diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2ccf6f2..5f35f8b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,8 +15,8 @@ jobs: max-parallel: 4 fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9] - # github runner with python 3.5 currently fails to install this package + # Current ubuntu-latest (Ubuntu 22.04) provides the following versions of Python: + python-version: [3.7, 3.8, 3.9, 3.10, 3.11] steps: