From 97538d9aa9366c2ce41d1323e883322cb5c26189 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 03:02:23 +0000 Subject: [PATCH] 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](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v3...v4) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/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] --- .github/workflows/autoreview.yml | 8 ++++---- .github/workflows/pages.yml | 6 +++--- .github/workflows/test.arduino-compile-examples.yml | 8 ++++---- .github/workflows/test.arduino-lint.yml | 2 +- .github/workflows/test.yml | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/autoreview.yml b/.github/workflows/autoreview.yml index 497b032..4be5fdd 100644 --- a/.github/workflows/autoreview.yml +++ b/.github/workflows/autoreview.yml @@ -6,7 +6,7 @@ jobs: name: reviewdog/actionlint runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: sparse-checkout: | .github @@ -15,7 +15,7 @@ jobs: name: reviewdog/misspell runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run misspell with reviewdog uses: reviewdog/action-misspell@v1 with: @@ -26,7 +26,7 @@ jobs: name: reviewdog/remark-lint runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: install remark presets run: npm install shell: bash @@ -38,7 +38,7 @@ jobs: name: codespell runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: codespell-project/actions-codespell@v2 with: check_filenames: true diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index ae721a0..35181c4 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -17,9 +17,9 @@ jobs: # Specify runner + deployment step runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.12' cache: 'pip' @@ -33,7 +33,7 @@ jobs: cd ./doc/ make html - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: ./doc/build/html/ retention-days: 8 diff --git a/.github/workflows/test.arduino-compile-examples.yml b/.github/workflows/test.arduino-compile-examples.yml index c9370c8..ab9c7c4 100644 --- a/.github/workflows/test.arduino-compile-examples.yml +++ b/.github/workflows/test.arduino-compile-examples.yml @@ -11,10 +11,10 @@ jobs: hide_bot_comments: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Hide outdated bot comments if: github.event_name == 'pull_request' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -90,7 +90,7 @@ jobs: version: 3.1.0 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Compiles every example with Arduino IDE. uses: arduino/compile-sketches@v1 with: @@ -118,7 +118,7 @@ jobs: steps: # This step is needed to get the size data produced by the compile jobs. - name: Download sketches reports artifact. - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v5 with: path: ${{ env.SKETCHES_REPORTS_PATH }} diff --git a/.github/workflows/test.arduino-lint.yml b/.github/workflows/test.arduino-lint.yml index c0c396f..ae9f4cf 100644 --- a/.github/workflows/test.arduino-lint.yml +++ b/.github/workflows/test.arduino-lint.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 20 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Run arduino library lint. uses: arduino/arduino-lint-action@v2 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 55a9b33..d968588 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: apply-label: runs-on: ubuntu-latest steps: - - uses: actions/github-script@v7 + - uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: |