From 549049528e1a4ff02ee01dadc8e4bb020e77ac9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 29 Aug 2026 02:47:33 +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/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/create-github-app-token](https://github.com/actions/create-github-app-token). 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) 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) --- updated-dependencies: - 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 - dependency-name: actions/create-github-app-token dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/sync-and-release.yml | 8 ++++---- .github/workflows/tests.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync-and-release.yml b/.github/workflows/sync-and-release.yml index ce094ee..cbfa9d8 100644 --- a/.github/workflows/sync-and-release.yml +++ b/.github/workflows/sync-and-release.yml @@ -25,12 +25,12 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'PyDevices/lvgl-python' steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: fetch-depth: 0 submodules: recursive - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: "3.12" @@ -47,7 +47,7 @@ jobs: run: ./scripts/sync_from_lvgl_bindings.sh --ref "${{ inputs.lvgl_bindings_ref }}" - name: Check out matching smoke suite - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: repository: PyDevices/lvgl-bindings ref: ${{ inputs.lvgl_bindings_ref }} @@ -97,7 +97,7 @@ jobs: - name: Mint a repository-scoped installation token id: app-token if: inputs.mode == 'release' && steps.commit.outputs.changed == 'true' - 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/tests.yml b/.github/workflows/tests.yml index d1b6946..fc51964 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,11 +12,11 @@ jobs: linux: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: submodules: recursive - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v7 with: python-version: "3.12"