From 85e74e959c5c79e40ddb3323e88a79df3cc7916d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 17:24:25 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 3 updates Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 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/v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) --- 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: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build_n_deploy.yml | 2 +- .github/workflows/pip-audit.yml | 8 ++++---- .github/workflows/pre-commit.yml | 12 ++++++------ 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build_n_deploy.yml b/.github/workflows/build_n_deploy.yml index 5646644..d247d02 100644 --- a/.github/workflows/build_n_deploy.yml +++ b/.github/workflows/build_n_deploy.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Python environment uses: actions/setup-python@v6 with: diff --git a/.github/workflows/pip-audit.yml b/.github/workflows/pip-audit.yml index b673501..d215389 100644 --- a/.github/workflows/pip-audit.yml +++ b/.github/workflows/pip-audit.yml @@ -13,7 +13,7 @@ jobs: python-version: [ "3.10", "3.11", "3.12", "3.13" ] name: pip-audit python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} @@ -64,7 +64,7 @@ jobs: fi cat audit-report-${{ matrix.python-version }}.md >> "$GITHUB_STEP_SUMMARY" fi - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: audit-${{ matrix.python-version }} retention-days: 2 @@ -83,8 +83,8 @@ jobs: - name: Get analysis timestamp id: timestamp run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT" - - uses: actions/checkout@v5 - - uses: actions/download-artifact@v5 + - uses: actions/checkout@v6 + - uses: actions/download-artifact@v6 id: download with: pattern: audit-* diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 14ca2fa..37ff30c 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -15,7 +15,7 @@ jobs: python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ] name: Pre-commit python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 100 - uses: actions/setup-python@v6 @@ -87,7 +87,7 @@ jobs: - name: Print licences report if: ${{ always() }} run: echo "${{ steps.license_check_print_report.outputs.report }}" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: constraints-artifacts-${{ matrix.python-version }} retention-days: 2 @@ -100,7 +100,7 @@ jobs: python-version: [ "3.7" ] name: Pre-commit python ${{ matrix.python-version }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 100 - uses: actions/setup-python@v6 @@ -171,7 +171,7 @@ jobs: - name: Print licences report if: ${{ always() }} run: echo "${{ steps.license_check_print_report.outputs.report }}" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: constraints-artifacts-${{ matrix.python-version }} retention-days: 2 @@ -188,8 +188,8 @@ jobs: - name: Get analysis timestamp id: timestamp run: echo "timestamp=$(date -Is)" >> "$GITHUB_OUTPUT" - - uses: actions/checkout@v5 - - uses: actions/download-artifact@v5 + - uses: actions/checkout@v6 + - uses: actions/download-artifact@v6 id: download with: pattern: constraints-artifacts-*