From b8c692192de5055f926ffb4fec298197c2558ee6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 18:46:51 +0000 Subject: [PATCH] Bump the action-dependencies group with 2 updates Bumps the action-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: action-dependencies - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: action-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build-docker-images.yml | 2 +- .github/workflows/build.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/tests-all.yml | 4 ++-- .github/workflows/tests-develop.yml | 2 +- .github/workflows/tests-min.yml | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-docker-images.yml b/.github/workflows/build-docker-images.yml index a1bd91bff..42bbdbfde 100644 --- a/.github/workflows/build-docker-images.yml +++ b/.github/workflows/build-docker-images.yml @@ -25,7 +25,7 @@ jobs: echo "Latest tag: $tag" - name: Checkout repo - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Build gromacs image run: | diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4272175ad..3aa84d32c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 with: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a495eb0fa..8001b7cd3 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python uses: actions/setup-python@v6 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 484b8cfb0..9f41f270d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: setup Python diff --git a/.github/workflows/tests-all.yml b/.github/workflows/tests-all.yml index 06a69ad06..a0abb54ee 100644 --- a/.github/workflows/tests-all.yml +++ b/.github/workflows/tests-all.yml @@ -12,7 +12,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -36,7 +36,7 @@ jobs: tests-develop: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/tests-develop.yml b/.github/workflows/tests-develop.yml index be46d9869..187e92386 100644 --- a/.github/workflows/tests-develop.yml +++ b/.github/workflows/tests-develop.yml @@ -36,7 +36,7 @@ jobs: - os: ubuntu-24.04 python-version: "3.13" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} diff --git a/.github/workflows/tests-min.yml b/.github/workflows/tests-min.yml index 7e5f660a3..ffe51ebf8 100644 --- a/.github/workflows/tests-min.yml +++ b/.github/workflows/tests-min.yml @@ -40,7 +40,7 @@ jobs: - os: windows-2025 python-version: "3.13" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }} @@ -61,7 +61,7 @@ jobs: run: coverage xml - name: upload to codecov.io - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: fail_ci_if_error: true files: tests/coverage.xml