From cd03ed888d7f86d6a95426bf3637beb5d985ea13 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 10:04:04 +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/build-release.yml | 4 ++-- .github/workflows/reusable-docker.yml | 2 +- .github/workflows/reusable-gate.yml | 6 +++--- .github/workflows/reusable-tests.yml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 3554f6d..97ac371 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -41,7 +41,7 @@ jobs: permissions: pull-requests: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -63,7 +63,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/reusable-docker.yml b/.github/workflows/reusable-docker.yml index 5cb3607..62d1c32 100644 --- a/.github/workflows/reusable-docker.yml +++ b/.github/workflows/reusable-docker.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Retrieve repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/reusable-gate.yml b/.github/workflows/reusable-gate.yml index 0be23dd..7479493 100644 --- a/.github/workflows/reusable-gate.yml +++ b/.github/workflows/reusable-gate.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Retrieve repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -60,7 +60,7 @@ jobs: steps: - name: Retrieve repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -135,7 +135,7 @@ jobs: steps: - name: Retrieve repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/reusable-tests.yml b/.github/workflows/reusable-tests.yml index 155f1f3..89e4046 100644 --- a/.github/workflows/reusable-tests.yml +++ b/.github/workflows/reusable-tests.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Retrieve repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up uv uses: astral-sh/setup-uv@v7 @@ -42,7 +42,7 @@ jobs: uv run pytest --cov=batchee --cov-report=xml:build/reports/coverage.xml tests/ - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} verbose: true