From 0b35848df118df73b692f4f6a2cac9a2310341be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 21:34:19 +0000 Subject: [PATCH] ci(deps): bump the routine group across 1 directory with 5 updates Bumps the routine group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [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` | | [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) | `2` | `3` | 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/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 `dependabot/fetch-metadata` from 2 to 3 - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](https://github.com/dependabot/fetch-metadata/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: routine - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: routine - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: routine - dependency-name: dependabot/fetch-metadata dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: routine - dependency-name: softprops/action-gh-release dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: routine ... Signed-off-by: dependabot[bot] --- .github/workflows/build-installers.yml | 10 +++++----- .github/workflows/ci.yml | 6 +++--- .github/workflows/dependabot-auto.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-installers.yml b/.github/workflows/build-installers.yml index 6b3f63cba..60b5e8474 100644 --- a/.github/workflows/build-installers.yml +++ b/.github/workflows/build-installers.yml @@ -47,7 +47,7 @@ jobs: - { os: macos-15-intel, plat: macOS, arch: x86_64 } runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 # setuptools-scm needs full history + tags @@ -113,7 +113,7 @@ jobs: ARCH="${{ matrix.arch }}" bash packaging/macos/make_dmg.sh mv PyReconstruct-*.dmg dist-assets/ - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: installer-${{ matrix.plat }}-${{ matrix.arch }} path: dist-assets/* @@ -127,10 +127,10 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v4 # needed for packaging/linux/ + release notes + - uses: actions/checkout@v7 # needed for packaging/linux/ + release notes with: fetch-depth: 0 # full history + tags for the changelog link - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: path: dist merge-multiple: true @@ -173,7 +173,7 @@ jobs: fi } > release_body.md echo "----- release_body.md -----"; cat release_body.md - - uses: softprops/action-gh-release@v2 + - uses: softprops/action-gh-release@v3 with: files: dist/* prerelease: false diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 80c4bcbc4..368c42ff3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 10 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v7 with: @@ -61,7 +61,7 @@ jobs: runs-on: ${{ matrix.os }} timeout-minutes: 30 # headroom for the cold wheel install (vtk/scipy/PySide6/...) steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v7 with: @@ -117,7 +117,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 30 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v7 with: diff --git a/.github/workflows/dependabot-auto.yml b/.github/workflows/dependabot-auto.yml index 6a429fb1c..5630dd4eb 100644 --- a/.github/workflows/dependabot-auto.yml +++ b/.github/workflows/dependabot-auto.yml @@ -19,7 +19,7 @@ jobs: steps: - name: read the update type id: meta - uses: dependabot/fetch-metadata@v2 + uses: dependabot/fetch-metadata@v3 with: github-token: ${{ secrets.GITHUB_TOKEN }}