Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-dispatch-token.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- name: Mint an installation token for lvgl-python
id: app-token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.PYDEVICES_APP_ID }}
private-key: ${{ secrets.PYDEVICES_APP_PRIVATE_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generator-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository and LVGL
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: recursive

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/linux-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,46 +25,46 @@ jobs:
runtime: [micropython, circuitpython]
steps:
- name: Check out bindings under test
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: lvgl-bindings
ref: ${{ inputs['bindings-ref'] || github.sha }}
submodules: recursive

- name: Check out cmods build orchestration
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: PyDevices/cmods
ref: f2a7521427fee10c37657ed8858e8c34ade21649
path: integration

- name: Check out MicroPython consumer
if: matrix.runtime == 'micropython'
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: PyDevices/lvgl-micropython
ref: 26d15672b1418baa64abe3229b75b11e6359d368
path: integration/lvgl-micropython

- name: Check out MicroPython v1.28.0
if: matrix.runtime == 'micropython'
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: micropython/micropython
ref: v1.28.0
path: integration/micropython

- name: Check out CircuitPython consumer
if: matrix.runtime == 'circuitpython'
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: PyDevices/lvgl-circuitpython
ref: 83b24e2a939c714401c26106a6c8e60bed4c27f4
path: integration/lvgl-circuitpython

- name: Check out CircuitPython 10.2.1
if: matrix.runtime == 'circuitpython'
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: adafruit/circuitpython
ref: 10.2.1
Expand Down Expand Up @@ -111,21 +111,21 @@ jobs:
timeout-minutes: 60
steps:
- name: Check out bindings under test
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: lvgl-bindings
ref: ${{ inputs.bindings-ref || github.sha }}
submodules: recursive

- name: Check out CPython consumer
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: PyDevices/lvgl-python
ref: 8f4fca66d5a58a662b28eced7639901e327a7643
path: lvgl-python
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:
sha: ${{ steps.ref.outputs.sha }}
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0
ref: ${{ inputs['bindings-ref'] }}
submodules: recursive

- uses: actions/setup-python@v5
- uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
steps:
- name: Mint a repository-scoped installation token
id: app-token
uses: actions/create-github-app-token@v2
uses: actions/create-github-app-token@v3
with:
app-id: ${{ secrets.PYDEVICES_APP_ID }}
private-key: ${{ secrets.PYDEVICES_APP_PRIVATE_KEY }}
Expand Down
Loading