From 561053dd4c0c11309281691d437641ec87ee6e81 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 06:17:28 +0000 Subject: [PATCH] Bump the github-actions group with 3 updates Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) 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 `actions/cache` from 5 to 6 - [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/v5...v6) 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: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-ultraplot.yml | 6 +++--- .github/workflows/main.yml | 12 ++++++------ .github/workflows/publish-pypi.yml | 4 ++-- .github/workflows/test-map.yml | 6 +++--- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build-ultraplot.yml b/.github/workflows/build-ultraplot.yml index e2eb364ad..6db397daf 100644 --- a/.github/workflows/build-ultraplot.yml +++ b/.github/workflows/build-ultraplot.yml @@ -49,7 +49,7 @@ jobs: nproc cat /proc/cpuinfo | grep "model name" | head -1 - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -98,7 +98,7 @@ jobs: nproc cat /proc/cpuinfo | grep "model name" | head -1 - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: mamba-org/setup-micromamba@v3.0.0 with: @@ -131,7 +131,7 @@ jobs: # Cache Baseline Figures (Restore step) - name: Cache Baseline Figures id: cache-baseline - uses: actions/cache@v5 + uses: actions/cache@v6 if: ${{ env.IS_PR }} with: path: ./ultraplot/tests/baseline # The directory to cache diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b7af64196..a3f38ad44 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: outputs: run: ${{ github.event_name == 'push' && 'true' || steps.filter.outputs.python }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: dorny/paths-filter@v4 id: filter with: @@ -32,7 +32,7 @@ jobs: mode: ${{ steps.select.outputs.mode }} tests: ${{ steps.select.outputs.tests }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -41,7 +41,7 @@ jobs: - name: Restore test map cache id: restore-map - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: .ci/test-map.json key: test-map-${{ github.event.pull_request.base.sha }} @@ -122,7 +122,7 @@ jobs: matplotlib-versions: ${{ steps.set-versions.outputs.matplotlib-versions }} test-matrix: ${{ steps.set-versions.outputs.test-matrix }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -153,7 +153,7 @@ jobs: with: swap-size-gb: 10 - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -182,7 +182,7 @@ jobs: ultraplot/tests - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml diff --git a/.github/workflows/publish-pypi.yml b/.github/workflows/publish-pypi.yml index 7c7aad35c..d693a2e2d 100644 --- a/.github/workflows/publish-pypi.yml +++ b/.github/workflows/publish-pypi.yml @@ -14,7 +14,7 @@ jobs: name: Build packages runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -144,7 +144,7 @@ jobs: # env: # ZENODO_ACCESS_TOKEN: ${{ secrets.ZENODO_ACCESS_TOKEN }} # steps: - # - uses: actions/checkout@v6 + # - uses: actions/checkout@v7 # with: # fetch-depth: 0 # diff --git a/.github/workflows/test-map.yml b/.github/workflows/test-map.yml index e79729437..a1abcd6e6 100644 --- a/.github/workflows/test-map.yml +++ b/.github/workflows/test-map.yml @@ -19,7 +19,7 @@ jobs: with: swap-size-gb: 10 - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 @@ -48,14 +48,14 @@ jobs: python tools/ci/build_test_map.py --coverage-file .coverage --output .ci/test-map.json --root . - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml name: codecov-test-map - name: Cache test map - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .ci/test-map.json key: test-map-${{ github.sha }}