Skip to content

Commit

Permalink
[internal] Micropython und Action Workflows aktualisiert
Browse files Browse the repository at this point in the history
  • Loading branch information
jkatins committed Oct 7, 2024
1 parent d13d477 commit 28d83a7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/verify-bec2format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
verify:
runs-on: ubuntu-20.04
env:
micropython_tag: 'v1.20.0'
micropython_tag: 'v1.23.0'
strategy:
matrix:
interpreter:
Expand All @@ -19,21 +19,21 @@ jobs:
steps:
- name: Setup Python
if: ${{ matrix.interpreter == '.tox/py310/bin/python' }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
id: setup-python
with:
python-version: '3.10'
- name: Tox Cache
if: ${{ matrix.interpreter == '.tox/py310/bin/python' }}
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.tox
key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-tox-${{ hashFiles('tox.ini') }}-poetry-${{ hashFiles('poetry.lock') }}
- name: Tox Setup
if: ${{ matrix.interpreter == '.tox/py310/bin/python' }}
run: pip install tox==4.6.0
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Prepare Python
if: ${{ matrix.interpreter == '.tox/py310/bin/python' }}
run: tox
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Cache Micropython
id: cache-micropython
if: ${{ matrix.interpreter == 'micropython/ports/unix/build-standard/micropython' }}
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/micropython
key: ${{ runner.os }}-micropython-${{ env.micropython_tag }}
Expand Down

0 comments on commit 28d83a7

Please sign in to comment.