Skip to content

Commit 63d16e5

Browse files
dependabot[bot]Rotzbua
authored andcommitted
chore(ci): bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `4` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9df85ad commit 63d16e5

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/autoreview.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: reviewdog/actionlint
77
runs-on: ubuntu-24.04
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
with:
1111
sparse-checkout: |
1212
.github
@@ -15,7 +15,7 @@ jobs:
1515
name: reviewdog/misspell
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Run misspell with reviewdog
2020
uses: reviewdog/action-misspell@v1
2121
with:
@@ -26,7 +26,7 @@ jobs:
2626
name: reviewdog/remark-lint
2727
runs-on: ubuntu-24.04
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
- name: install remark presets
3131
run: npm install
3232
shell: bash
@@ -38,7 +38,7 @@ jobs:
3838
name: codespell
3939
runs-on: ubuntu-24.04
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242
- uses: codespell-project/actions-codespell@v2
4343
with:
4444
check_filenames: true

.github/workflows/pages.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
# Specify runner + deployment step
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Set up Python
22-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: '3.12'
2525
cache: 'pip'
@@ -33,7 +33,7 @@ jobs:
3333
cd ./doc/
3434
make html
3535
- name: Upload artifact
36-
uses: actions/upload-pages-artifact@v3
36+
uses: actions/upload-pages-artifact@v4
3737
with:
3838
path: ./doc/build/html/
3939
retention-days: 8

.github/workflows/test.arduino-compile-examples.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
hide_bot_comments:
1212
runs-on: ubuntu-24.04
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Hide outdated bot comments
1616
if: github.event_name == 'pull_request'
17-
uses: actions/github-script@v7
17+
uses: actions/github-script@v8
1818
with:
1919
github-token: ${{ secrets.GITHUB_TOKEN }}
2020
script: |
@@ -90,7 +90,7 @@ jobs:
9090
version: 3.1.0
9191
9292
steps:
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v5
9494
- name: Compiles every example with Arduino IDE.
9595
uses: arduino/compile-sketches@v1
9696
with:
@@ -118,7 +118,7 @@ jobs:
118118
steps:
119119
# This step is needed to get the size data produced by the compile jobs.
120120
- name: Download sketches reports artifact.
121-
uses: actions/download-artifact@v4
121+
uses: actions/download-artifact@v5
122122
with:
123123
path: ${{ env.SKETCHES_REPORTS_PATH }}
124124

.github/workflows/test.arduino-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-24.04
99
timeout-minutes: 20
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- name: Run arduino library lint.
1313
uses: arduino/arduino-lint-action@v2
1414
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
apply-label:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/github-script@v7
9+
- uses: actions/github-script@v8
1010
with:
1111
github-token: ${{ secrets.GITHUB_TOKEN }}
1212
script: |

0 commit comments

Comments
 (0)