diff --git a/.github/workflows/build_arm.yml b/.github/workflows/build_arm.yml index 0a6a582..b4c3e3e 100644 --- a/.github/workflows/build_arm.yml +++ b/.github/workflows/build_arm.yml @@ -43,7 +43,9 @@ jobs: steps: - name: Setup Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 + with: + python-version: "3.x" - name: Checkout code uses: actions/checkout@v3 diff --git a/.github/workflows/build_esp32.yml b/.github/workflows/build_esp32.yml index b479686..15f2055 100644 --- a/.github/workflows/build_esp32.yml +++ b/.github/workflows/build_esp32.yml @@ -85,7 +85,9 @@ jobs: - 'unexpectedmaker_tinys3' steps: - name: Setup Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 + with: + python-version: "3.x" - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/build_selftest.yml b/.github/workflows/build_selftest.yml index 639ed52..aa7e31d 100644 --- a/.github/workflows/build_selftest.yml +++ b/.github/workflows/build_selftest.yml @@ -31,7 +31,9 @@ jobs: steps: - name: Setup Python - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 + with: + python-version: "3.x" - name: Checkout code uses: actions/checkout@v3 @@ -76,7 +78,7 @@ jobs: - name: Save newly generated self-test images as CI artifacts if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: ghostfat_selftest_images path: ./ports/test_ghostfat/_build/${{ matrix.board }}/ghostfat_${{ matrix.board }}.img.gz.gz