Skip to content

Commit 5490495

Browse files
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](actions/checkout@v4...v7) Updates `actions/setup-python` from 5 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@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](actions/create-github-app-token@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] <support@github.com>
1 parent 5fe4bcd commit 5490495

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/sync-and-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525
runs-on: ubuntu-latest
2626
if: github.repository == 'PyDevices/lvgl-python'
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v7
2929
with:
3030
fetch-depth: 0
3131
submodules: recursive
3232

33-
- uses: actions/setup-python@v5
33+
- uses: actions/setup-python@v7
3434
with:
3535
python-version: "3.12"
3636

@@ -47,7 +47,7 @@ jobs:
4747
run: ./scripts/sync_from_lvgl_bindings.sh --ref "${{ inputs.lvgl_bindings_ref }}"
4848

4949
- name: Check out matching smoke suite
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v7
5151
with:
5252
repository: PyDevices/lvgl-bindings
5353
ref: ${{ inputs.lvgl_bindings_ref }}
@@ -97,7 +97,7 @@ jobs:
9797
- name: Mint a repository-scoped installation token
9898
id: app-token
9999
if: inputs.mode == 'release' && steps.commit.outputs.changed == 'true'
100-
uses: actions/create-github-app-token@v2
100+
uses: actions/create-github-app-token@v3
101101
with:
102102
app-id: ${{ secrets.PYDEVICES_APP_ID }}
103103
private-key: ${{ secrets.PYDEVICES_APP_PRIVATE_KEY }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
linux:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v7
1616
with:
1717
submodules: recursive
1818

19-
- uses: actions/setup-python@v5
19+
- uses: actions/setup-python@v7
2020
with:
2121
python-version: "3.12"
2222

0 commit comments

Comments
 (0)