From f1daa6d16cdc0b37c5cfb810de42e9eb486413c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Apr 2026 03:47:12 +0000 Subject: [PATCH] Bump the actions group across 1 directory with 7 updates Bumps the actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/github-script](https://github.com/actions/github-script) | `8` | `9` | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `2` | `3` | | [j178/prek-action](https://github.com/j178/prek-action) | `1` | `2` | Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) Updates `actions/checkout` from 4 to 6 - [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...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v8) Updates `softprops/action-gh-release` from 2 to 3 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](https://github.com/softprops/action-gh-release/compare/v2...v3) Updates `j178/prek-action` from 1 to 2 - [Release notes](https://github.com/j178/prek-action/releases) - [Commits](https://github.com/j178/prek-action/compare/v1...v2) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: j178/prek-action dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/add-issue-header.yml | 2 +- .github/workflows/build.yml | 32 +++++++++---------- .github/workflows/lint.yml | 2 +- .../workflows/new-bugs-announce-notifier.yml | 2 +- 4 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/add-issue-header.yml b/.github/workflows/add-issue-header.yml index c404bc51930..861e688da04 100644 --- a/.github/workflows/add-issue-header.yml +++ b/.github/workflows/add-issue-header.yml @@ -20,7 +20,7 @@ jobs: issues: write timeout-minutes: 5 steps: - - uses: actions/github-script@v8 + - uses: actions/github-script@v9 with: # language=JavaScript script: | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5574f82c913..df551b8da6d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -147,7 +147,7 @@ jobs: steps: # ── 1. Source ─────────────────────────────────────────────────────────── - name: "Checkout (branch: master)" - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: master fetch-depth: 1 @@ -157,7 +157,7 @@ jobs: # Cache downloaded dep tarballs (not the built artefacts — those are arch- # specific). Key includes the dep versions from build.sh to auto-invalidate. - name: "Cache downloaded dep sources" - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.BUILD_ROOT }}/deps key: | @@ -230,7 +230,7 @@ jobs: # ── 6. Upload .deb ────────────────────────────────────────────────────── - name: "Upload .deb artefact" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: success() with: name: "python_${{ env.PYTHON_VERSION }}_${{ matrix.arch }}_api${{ matrix.api }}-linux" @@ -240,7 +240,7 @@ jobs: # ── 7. Upload install tree on failure (for debugging) ────────────────── - name: "Upload install tree (on failure)" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: failure() with: name: "debug-install-${{ matrix.arch }}-api${{ matrix.api }}-linux" @@ -249,7 +249,7 @@ jobs: # ── 8. Upload build logs on failure ───────────────────────────────────── - name: "Upload build logs (on failure)" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: failure() with: name: "debug-logs-${{ matrix.arch }}-api${{ matrix.api }}-linux" @@ -273,14 +273,14 @@ jobs: steps: - name: "Checkout (branch: master)" - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: master fetch-depth: 1 persist-credentials: false - name: "Cache downloaded dep sources" - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.BUILD_ROOT }}/deps key: | @@ -333,7 +333,7 @@ jobs: # macOS does not produce a .deb — upload the install tree instead - name: "Upload install tree (macOS)" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: success() with: name: "python_${{ env.PYTHON_VERSION }}_${{ matrix.arch }}_api${{ matrix.api }}-macos" @@ -341,7 +341,7 @@ jobs: retention-days: 14 - name: "Upload install tree (on failure)" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: failure() with: name: "debug-install-${{ matrix.arch }}-api${{ matrix.api }}-macos" @@ -368,7 +368,7 @@ jobs: steps: - name: "Checkout (branch: master)" - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: master fetch-depth: 1 @@ -421,7 +421,7 @@ jobs: bash bee/build.sh - name: "Upload install tree (Windows)" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: success() with: name: "python_${{ env.PYTHON_VERSION }}_${{ matrix.arch }}_api${{ matrix.api }}-windows" @@ -429,7 +429,7 @@ jobs: retention-days: 14 - name: "Upload install tree (on failure)" - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: failure() with: name: "debug-install-${{ matrix.arch }}-api${{ matrix.api }}-windows" @@ -459,7 +459,7 @@ jobs: steps: - name: "Download .deb artefact" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: name: "python_${{ env.PYTHON_VERSION }}_${{ matrix.arch }}_api${{ matrix.api }}-linux" path: debs/ @@ -561,14 +561,14 @@ jobs: steps: - name: "Checkout (branch: master)" - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: master fetch-depth: 1 persist-credentials: false - name: "Download all .deb artefacts" - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v8 with: # Match all Linux .deb artefact names pattern: "python_*-linux" @@ -581,7 +581,7 @@ jobs: ls -lh release-debs/ - name: "Create GitHub Release and upload .deb files" - uses: softprops/action-gh-release@v2 + uses: softprops/action-gh-release@v3 with: tag_name: "${{ github.ref_name }}" name: "Python ${{ env.PYTHON_VERSION }} for Android — ${{ github.ref_name }}" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 0ded53b00da..9d575c9bf68 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -22,4 +22,4 @@ jobs: - uses: actions/checkout@v6 with: persist-credentials: false - - uses: j178/prek-action@v1 + - uses: j178/prek-action@v2 diff --git a/.github/workflows/new-bugs-announce-notifier.yml b/.github/workflows/new-bugs-announce-notifier.yml index b25750f0897..bb581ed0c01 100644 --- a/.github/workflows/new-bugs-announce-notifier.yml +++ b/.github/workflows/new-bugs-announce-notifier.yml @@ -18,7 +18,7 @@ jobs: node-version: 20 - run: npm install mailgun.js form-data - name: Send notification - uses: actions/github-script@v8 + uses: actions/github-script@v9 env: MAILGUN_API_KEY: ${{ secrets.MAILGUN_PYTHON_ORG_MAILGUN_KEY }} with: