diff options
| author | Damien George <damien@micropython.org> | 2021-10-21 12:59:59 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-10-21 16:03:40 +1100 |
| commit | f4c1389fbcc21e3e4b37a7dbe5018e1a7314f6cd (patch) | |
| tree | 352feb504be3190c5aeecbda3b7e01064787165b | |
| parent | c3c2c37fbcc59f8ecd58dc294b31ad4d239fd52c (diff) | |
github/workflows: Use Python 3.8 for macos workflow.
Otherwise it gets a more recent version which fails some of the test suite.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | .github/workflows/ports_unix.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ports_unix.yml b/.github/workflows/ports_unix.yml index 0e6a98f6b..4e75172b6 100644 --- a/.github/workflows/ports_unix.yml +++ b/.github/workflows/ports_unix.yml @@ -190,7 +190,9 @@ jobs: runs-on: macos-11.0 steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 + - uses: actions/setup-python@v2 + with: + python-version: '3.8' - name: Build run: source tools/ci.sh && ci_unix_macos_build - name: Run tests |
