diff options
author | Daniel Kutik <daniel.kutik@lavawerk.com> | 2023-10-11 10:42:21 +0200 |
---|---|---|
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-10-16 22:26:38 +0000 |
commit | e848e9f72c7d8789c59c8af29ecffa97fa6ab02e (patch) | |
tree | 3ff012c47ab1db89fa85a0f8de4a38e3047b9a1d | |
parent | 1544afe460b6d206d5494d1970db33e7f8cdfab0 (diff) | |
download | git-repo-e848e9f72c7d8789c59c8af29ecffa97fa6ab02e.tar.gz |
github: pin ubuntu to 20.04 to make py36 work
Ubuntu versions newer that 20.04 do not support Python 3.6 as per
https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
Change-Id: I92d8e762a7d05e4b0d6d6e90944ceedbbfa74e57
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/389117
Tested-by: Daniel Kutik <daniel.kutik@lavawerk.com>
Reviewed-by: Mike Frysinger <vapier@google.com>
Commit-Queue: Daniel Kutik <daniel.kutik@lavawerk.com>
-rw-r--r-- | .github/workflows/test-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/test-ci.yml b/.github/workflows/test-ci.yml index 0b9ef72c..bf53b406 100644 --- a/.github/workflows/test-ci.yml +++ b/.github/workflows/test-ci.yml | |||
@@ -13,7 +13,8 @@ jobs: | |||
13 | strategy: | 13 | strategy: |
14 | fail-fast: false | 14 | fail-fast: false |
15 | matrix: | 15 | matrix: |
16 | os: [ubuntu-latest, macos-latest, windows-latest] | 16 | # ubuntu-20.04 is the last version that supports python 3.6 |
17 | os: [ubuntu-20.04, macos-latest, windows-latest] | ||
17 | python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] | 18 | python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] |
18 | runs-on: ${{ matrix.os }} | 19 | runs-on: ${{ matrix.os }} |
19 | 20 | ||