From 9a8ce6fd9592a94fd13c96980fc5c2c856762168 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 09:04:15 +0000 Subject: [PATCH] Bump the all-github-actions-packages group with 3 updates Bumps the all-github-actions-packages group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [julia-actions/cache](https://github.com/julia-actions/cache) and [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `actions/checkout` from 2 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/v2...v7) Updates `julia-actions/cache` from 2 to 3 - [Release notes](https://github.com/julia-actions/cache/releases) - [Commits](https://github.com/julia-actions/cache/compare/v2...v3) Updates `codecov/codecov-action` from 5 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/v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions-packages - dependency-name: julia-actions/cache dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions-packages - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions-packages ... Signed-off-by: dependabot[bot] --- .github/workflows/DocsNav.yml | 2 +- .github/workflows/DocsPreviewCleanup.yml | 2 +- .github/workflows/Format.yml | 2 +- .github/workflows/ci.yml | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/DocsNav.yml b/.github/workflows/DocsNav.yml index 7e861958..c380e142 100644 --- a/.github/workflows/DocsNav.yml +++ b/.github/workflows/DocsNav.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout gh-pages branch - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: ref: gh-pages diff --git a/.github/workflows/DocsPreviewCleanup.yml b/.github/workflows/DocsPreviewCleanup.yml index bc29462c..9fd1ba17 100644 --- a/.github/workflows/DocsPreviewCleanup.yml +++ b/.github/workflows/DocsPreviewCleanup.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout gh-pages branch - uses: actions/checkout@v2 + uses: actions/checkout@v7 with: ref: gh-pages - name: Delete preview and history + push changes diff --git a/.github/workflows/Format.yml b/.github/workflows/Format.yml index 40d66912..876dca8a 100644 --- a/.github/workflows/Format.yml +++ b/.github/workflows/Format.yml @@ -10,7 +10,7 @@ jobs: format: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v7 - uses: julia-actions/setup-julia@latest with: version: 1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d1b7b04..7b663002 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,16 +55,16 @@ jobs: arch: x64 num_threads: 1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.runner.version }} arch: ${{ matrix.runner.arch }} - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v5 + - uses: codecov/codecov-action@v7 with: files: lcov.info token: ${{ secrets.CODECOV_TOKEN }}