Skip to content

Commit 932988e

Browse files
authored
Merge pull request #180 from StackStorm-Exchange/fix/ci
Fix py3.6 build by pinning the container to Ubuntu 20.04
2 parents 2fa2cb0 + 6dc3192 commit 932988e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build_and_test.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ jobs:
1212
# assuming that any pull requests from the same repo are infra changes.
1313
if: github.event.pull_request.head.repo.full_name != github.repository
1414

15-
runs-on: ubuntu-latest
15+
# As long as we need Python 3.6 here in the test, we can only use up to Ubuntu 20
16+
# See https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
17+
runs-on: ubuntu-20.04
1618
name: 'Build and Test / Python ${{ matrix.python-version-short }}'
1719
strategy:
1820
matrix:
1921
include:
2022
- python-version-short: "3.6"
21-
python-version: 3.6.13
23+
python-version: 3.6.15
2224
steps:
2325
- name: Checkout Pack Repo and CI Repos
2426
uses: StackStorm-Exchange/ci/.github/actions/checkout@master

0 commit comments

Comments
 (0)