From 993a3c929e3b65f43af8a7d85c457c500fa5731e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 18:58:51 +0000 Subject: [PATCH] chore(deps): 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` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `4` | `5` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `4` | 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/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/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/configure-pages` from 4 to 5 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v4...v5) 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' 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/configure-pages dependency-version: '5' 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 ... Signed-off-by: dependabot[bot] --- .github/workflows/CompileMKDocsToPDF.yml | 4 ++-- .github/workflows/MakeQGISPluginZipForManualInstalls.yml | 4 ++-- .github/workflows/ci.yml | 8 ++++---- .github/workflows/gh-pages.yml | 8 ++++---- .github/workflows/release.yml | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/CompileMKDocsToPDF.yml b/.github/workflows/CompileMKDocsToPDF.yml index eeb7f36..3438328 100644 --- a/.github/workflows/CompileMKDocsToPDF.yml +++ b/.github/workflows/CompileMKDocsToPDF.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Create MkDocs Config working-directory: ./docs @@ -34,7 +34,7 @@ jobs: REQUIREMENTS: docs/requirements.txt - name: Upload PDF Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: documentation-pdf path: pdfs diff --git a/.github/workflows/MakeQGISPluginZipForManualInstalls.yml b/.github/workflows/MakeQGISPluginZipForManualInstalls.yml index 264b50b..0efe7e5 100644 --- a/.github/workflows/MakeQGISPluginZipForManualInstalls.yml +++ b/.github/workflows/MakeQGISPluginZipForManualInstalls.yml @@ -18,7 +18,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -39,7 +39,7 @@ jobs: echo "ZIP_PATH=dist/$ZIP_NAME" >> "$GITHUB_OUTPUT" - name: Upload plugin artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: ${{ steps.zip-details.outputs.ZIP_NAME }} path: ${{ steps.zip-details.outputs.ZIP_PATH }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2c7d5fe..b552a0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: submodules: recursive @@ -53,7 +53,7 @@ jobs: WITH_PYTHON_PEP=${WITH_PYTHON_PEP} EOF - name: Install python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.10' cache: pip @@ -80,10 +80,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.10' cache: pip diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index c694b12..0038374 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -23,10 +23,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.10' @@ -45,10 +45,10 @@ jobs: fi - name: Setup Pages - uses: actions/configure-pages@v4 + uses: actions/configure-pages@v5 - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: './docs/site' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b00f764..b4e6e58 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -92,7 +92,7 @@ jobs: steps: - name: Checkout release branch - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: release fetch-depth: 0