From ff242d062ad6ee29aea417445cef6659f7b71dcc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 29 Aug 2026 02:47:42 +0000 Subject: [PATCH] ci: bump the actions group across 1 directory with 3 updates Bumps the actions group with 3 updates in the / directory: [actions/create-github-app-token](https://github.com/actions/create-github-app-token), [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python). Updates `actions/create-github-app-token` from 2 to 3 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Changelog](https://github.com/actions/create-github-app-token/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/create-github-app-token/compare/v2...v3) Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) Updates `actions/setup-python` from 5 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v7) --- updated-dependencies: - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/check-dispatch-token.yml | 2 +- .github/workflows/generator-checks.yml | 4 ++-- .github/workflows/linux-integration.yml | 18 +++++++++--------- .github/workflows/release.yml | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/check-dispatch-token.yml b/.github/workflows/check-dispatch-token.yml index 74c94bb..659b3ea 100644 --- a/.github/workflows/check-dispatch-token.yml +++ b/.github/workflows/check-dispatch-token.yml @@ -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 }} diff --git a/.github/workflows/generator-checks.yml b/.github/workflows/generator-checks.yml index 20055dd..2ab7f9d 100644 --- a/.github/workflows/generator-checks.yml +++ b/.github/workflows/generator-checks.yml @@ -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" diff --git a/.github/workflows/linux-integration.yml b/.github/workflows/linux-integration.yml index a551b99..68bbaf6 100644 --- a/.github/workflows/linux-integration.yml +++ b/.github/workflows/linux-integration.yml @@ -25,14 +25,14 @@ 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 @@ -40,7 +40,7 @@ jobs: - name: Check out MicroPython consumer if: matrix.runtime == 'micropython' - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: PyDevices/lvgl-micropython ref: 26d15672b1418baa64abe3229b75b11e6359d368 @@ -48,7 +48,7 @@ jobs: - 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 @@ -56,7 +56,7 @@ jobs: - name: Check out CircuitPython consumer if: matrix.runtime == 'circuitpython' - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: PyDevices/lvgl-circuitpython ref: 83b24e2a939c714401c26106a6c8e60bed4c27f4 @@ -64,7 +64,7 @@ jobs: - 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 @@ -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" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f7a59ef..4993eea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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" @@ -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 }}