From 2bc69f374b65a1abc2164b34fac554571ec80fc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 10 Jun 2026 14:03:48 +0000 Subject: [PATCH] Bump the github-actions group with 6 updates Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [julia-actions/setup-julia](https://github.com/julia-actions/setup-julia) | `2` | `3` | | [julia-actions/cache](https://github.com/julia-actions/cache) | `2` | `3` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `6` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `7` | `8` | | [crate-ci/typos](https://github.com/crate-ci/typos) | `1.23.1` | `1.47.2` | 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) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) Updates `peter-evans/create-pull-request` from 7 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/v7...v8) Updates `crate-ci/typos` from 1.23.1 to 1.47.2 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.23.1...v1.47.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: julia-actions/setup-julia dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: julia-actions/cache dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: crate-ci/typos dependency-version: 1.47.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/CI.yml | 12 ++++++------ .github/workflows/Docs.yml | 6 +++--- .github/workflows/PreCommitUpdate.yml | 6 +++--- .github/workflows/Runic.yml | 4 ++-- .github/workflows/SpellCheck.yml | 2 +- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index dc9b865..d2f4bfd 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -35,12 +35,12 @@ jobs: - "1" # latest stable release - "pre" # next release, non-blocking early warning 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: x64 - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 - name: Update registry run: julia -e 'using Pkg; Pkg.Registry.update()' - uses: julia-actions/julia-runtest@v1 @@ -56,15 +56,15 @@ jobs: actions: write contents: read steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 + - uses: actions/checkout@v6 + - uses: julia-actions/setup-julia@v3 with: version: "1" # compat floor is 1.12; do not use 1.10 arch: x64 - uses: julia-actions/julia-downgrade-compat@v2 with: skip: LinearAlgebra, Statistics # stdlibs in [compat], not downgradeable - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 with: diff --git a/.github/workflows/Docs.yml b/.github/workflows/Docs.yml index fa19d64..034539b 100644 --- a/.github/workflows/Docs.yml +++ b/.github/workflows/Docs.yml @@ -21,11 +21,11 @@ jobs: contents: write statuses: write steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v2 + - uses: actions/checkout@v6 + - uses: julia-actions/setup-julia@v3 with: version: '1' - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 - name: Configure doc environment shell: julia --project=docs --color=yes {0} run: | diff --git a/.github/workflows/PreCommitUpdate.yml b/.github/workflows/PreCommitUpdate.yml index e5318c5..25c21d4 100644 --- a/.github/workflows/PreCommitUpdate.yml +++ b/.github/workflows/PreCommitUpdate.yml @@ -9,11 +9,11 @@ jobs: pre-commit-update: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Hack for setup-python cache # https://github.com/actions/setup-python/issues/807 run: touch requirements.txt - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: cache: pip python-version: "3.11" @@ -27,7 +27,7 @@ jobs: pre-commit autoupdate || true - name: Create Pull Request id: cpr - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: commit-message: "chore: :robot: pre-commit update" title: "[AUTO] pre-commit update" diff --git a/.github/workflows/Runic.yml b/.github/workflows/Runic.yml index ff1d113..08233cd 100644 --- a/.github/workflows/Runic.yml +++ b/.github/workflows/Runic.yml @@ -23,10 +23,10 @@ jobs: - 'nightly' steps: - uses: actions/checkout@v6 - - uses: julia-actions/setup-julia@v2 + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v3 - name: Install Runic run: | julia --color=yes -e 'using Pkg; Pkg.add("Runic")' diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index 88c712e..820dbab 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -10,4 +10,4 @@ jobs: - name: Checkout Actions Repository uses: actions/checkout@v6 - name: Check spelling - uses: crate-ci/typos@v1.23.1 + uses: crate-ci/typos@v1.47.2