From e256d45349fdf65c7339853aa3e7c8888a120054 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 05:19:06 +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/setup-julia](https://github.com/julia-actions/setup-julia) and [julia-actions/cache](https://github.com/julia-actions/cache). Updates `actions/checkout` from 4 to 6 - [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/v4...v6) Updates `julia-actions/setup-julia` from 2 to 3 - [Release notes](https://github.com/julia-actions/setup-julia/releases) - [Commits](https://github.com/julia-actions/setup-julia/compare/v2...v3) 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions-packages - dependency-name: julia-actions/setup-julia dependency-version: '3' 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 ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yml | 6 +++--- .github/workflows/DocNav.yml | 2 +- .github/workflows/Examples.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f21ba541..506d2850 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -28,11 +28,11 @@ jobs: arch: - x64 steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 + - uses: actions/checkout@v6 + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 diff --git a/.github/workflows/DocNav.yml b/.github/workflows/DocNav.yml index 7e861958..50a284fc 100644 --- a/.github/workflows/DocNav.yml +++ b/.github/workflows/DocNav.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout gh-pages branch - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: gh-pages diff --git a/.github/workflows/Examples.yml b/.github/workflows/Examples.yml index f9da45f3..ff919b06 100644 --- a/.github/workflows/Examples.yml +++ b/.github/workflows/Examples.yml @@ -17,12 +17,12 @@ jobs: run-examples: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 + - uses: actions/checkout@v6 + - uses: julia-actions/setup-julia@v3 with: version: '1' arch: x64 - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 - name: Run NF examples run: | cd example