From 92af583c15d28379e29c588b1feefac4aee45545 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 22:33:16 +0000 Subject: [PATCH] Bump the gha-dependencies group with 2 updates Bumps the gha-dependencies group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 6 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/v6...v7) Updates `codecov/codecov-action` from 6 to 7 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/auto-bump-develop.yml | 2 +- .github/workflows/docker-build.yml | 2 +- .github/workflows/integration-tests.yml | 4 ++-- .github/workflows/pr-checks.yml | 6 +++--- .github/workflows/publish.yml | 2 +- .github/workflows/unit-tests.yml | 4 ++-- .github/workflows/version-and-build.yml | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/auto-bump-develop.yml b/.github/workflows/auto-bump-develop.yml index 1e272c7..13a3e71 100644 --- a/.github/workflows/auto-bump-develop.yml +++ b/.github/workflows/auto-bump-develop.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 1edc226..e972cdc 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -50,7 +50,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Log in to Container Registry if: ${{ inputs.push }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 5739861..cdbdd60 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Retrieve repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 @@ -52,7 +52,7 @@ jobs: uv run pytest --cov=stitchee --cov-report=xml tests/integration - name: Upload coverage - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} verbose: true diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 2a38dc2..94574a9 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 @@ -60,7 +60,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 @@ -91,7 +91,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bee1aac..fe0bde8 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -27,7 +27,7 @@ jobs: venue: ${{ steps.version.outputs.venue }} steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.release_tag || github.ref }} fetch-depth: 0 # Fetch all history for accurate versioning/changelogs diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index eec9fa1..43f3e30 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Retrieve repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 @@ -41,7 +41,7 @@ jobs: run: uv run pytest --cov=stitchee --cov-report=xml tests/unit - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} verbose: true diff --git a/.github/workflows/version-and-build.yml b/.github/workflows/version-and-build.yml index 51bec55..79f8aaf 100644 --- a/.github/workflows/version-and-build.yml +++ b/.github/workflows/version-and-build.yml @@ -46,7 +46,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # Need history for auto-bump script @@ -172,7 +172,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6