From c064ea08fa4b121772a79370d4931ebd1d5a99fd Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Wed, 19 Jun 2024 22:44:52 +0100 Subject: [PATCH] CI: Bump Pimoroni Pico and MicroPython to v1.23.0. --- .github/workflows/micropython.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/micropython.yml b/.github/workflows/micropython.yml index 2f79965..969ef56 100644 --- a/.github/workflows/micropython.yml +++ b/.github/workflows/micropython.yml @@ -7,8 +7,8 @@ on: types: [created] env: - MICROPYTHON_VERSION: v1.22.2 - PIMORONI_PICO_VERSION: v1.22.2-1bitpng + MICROPYTHON_VERSION: v1.23.0 + PIMORONI_PICO_VERSION: v1.23.0-1 WORKFLOW_VERSION: v2 jobs: @@ -35,6 +35,14 @@ jobs: submodules: false # MicroPython submodules are hideously broken path: micropython + - name: Apply MicroPython Backports + if: steps.cache.outputs.cache-hit != 'true' + shell: bash + working-directory: micropython + run: | + wget https://github.com/micropython/micropython/commit/932f76c6ba64c5a3e68de3324556d9979f09303b.patch + git apply 932f76c6ba64c5a3e68de3324556d9979f09303b.patch + - name: Fetch Pico submodules if: steps.cache.outputs.cache-hit != 'true' shell: bash