From a937498559c18ffe8274082da60d83023b54e445 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 15:36:16 +0000 Subject: [PATCH] Bump the github-actions group with 4 updates Bumps the github-actions group with 4 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact), [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) and [actions/cache](https://github.com/actions/cache). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6...v7) Updates `peter-evans/create-pull-request` from 7 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v7...v8) 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) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/pip-audit.yml | 6 +++--- .github/workflows/pre-commit.yml | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pip-audit.yml b/.github/workflows/pip-audit.yml index d215389..fa67abc 100644 --- a/.github/workflows/pip-audit.yml +++ b/.github/workflows/pip-audit.yml @@ -64,7 +64,7 @@ jobs: fi cat audit-report-${{ matrix.python-version }}.md >> "$GITHUB_STEP_SUMMARY" fi - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: audit-${{ matrix.python-version }} retention-days: 2 @@ -84,7 +84,7 @@ jobs: id: timestamp run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT" - uses: actions/checkout@v6 - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 id: download with: pattern: audit-* @@ -122,7 +122,7 @@ jobs: echo "skip=$skip" >> "$GITHUB_OUTPUT" - name: Create Pull Request id: cpr - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 if: steps.move.outputs.skip == 'false' with: title: Updated constraints due security reasons (triggered on ${{ steps.timestamp.outputs.timestamp }} by ${{ github.sha }}) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 37ff30c..e72684c 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -54,7 +54,7 @@ jobs: run: | pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed - name: MyPy cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: '.mypy_cache/[0-9]*' key: mypy-${{ matrix.python-version }} @@ -87,7 +87,7 @@ jobs: - name: Print licences report if: ${{ always() }} run: echo "${{ steps.license_check_print_report.outputs.report }}" - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: constraints-artifacts-${{ matrix.python-version }} retention-days: 2 @@ -138,7 +138,7 @@ jobs: - run: | pip install -r dev-requirements.txt -r mypy-requirements.txt -c constraints-${{ matrix.python-version }}.txt-relaxed - name: MyPy cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: '.mypy_cache/[0-9]*' key: mypy-${{ matrix.python-version }} @@ -171,7 +171,7 @@ jobs: - name: Print licences report if: ${{ always() }} run: echo "${{ steps.license_check_print_report.outputs.report }}" - - uses: actions/upload-artifact@v5 + - uses: actions/upload-artifact@v6 with: name: constraints-artifacts-${{ matrix.python-version }} retention-days: 2 @@ -189,7 +189,7 @@ jobs: id: timestamp run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT" - uses: actions/checkout@v6 - - uses: actions/download-artifact@v6 + - uses: actions/download-artifact@v7 id: download with: pattern: constraints-artifacts-* @@ -215,7 +215,7 @@ jobs: echo "skip=$skip" >> "$GITHUB_OUTPUT" - name: Create Pull Request id: cpr - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 if: steps.move.outputs.skip == 'false' with: title: Updated constraints (triggered on ${{ steps.timestamp.outputs.timestamp }} by ${{ github.sha }})