From 32f97f61fd2ab3c8c53af31612155cbe76ff983d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 08:54:48 +0000 Subject: [PATCH 1/3] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Documenter.yml | 2 +- .github/workflows/Downgrade.yml | 2 +- .github/workflows/SpellCheck.yml | 2 +- .github/workflows/ci.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml index 39d3c93..691993a 100644 --- a/.github/workflows/Documenter.yml +++ b/.github/workflows/Documenter.yml @@ -26,7 +26,7 @@ jobs: build-docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: '1' diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index 8371b60..db5dac8 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -24,7 +24,7 @@ jobs: matrix: version: ['1'] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index ac4995a..a1c710c 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -8,6 +8,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Actions Repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check spelling uses: crate-ci/typos@v1.39.2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 379b318..0dc0e20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,7 +47,7 @@ jobs: - macOS-latest - windows-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} From f63baa22a0a6f561579986697931f6572b7df58c Mon Sep 17 00:00:00 2001 From: Max Gruebmeyer Date: Mon, 1 Dec 2025 10:53:51 +0100 Subject: [PATCH 2/3] Add persist-credentials to checkout@v6 --- .github/workflows/Documenter.yml | 2 ++ .github/workflows/Downgrade.yml | 2 ++ .github/workflows/SpellCheck.yml | 2 ++ .github/workflows/ci.yml | 2 ++ 4 files changed, 8 insertions(+) diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml index 691993a..fdab4dd 100644 --- a/.github/workflows/Documenter.yml +++ b/.github/workflows/Documenter.yml @@ -27,6 +27,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 + with: + persist-credentials: true - uses: julia-actions/setup-julia@v2 with: version: '1' diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index db5dac8..b265707 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -25,6 +25,8 @@ jobs: version: ['1'] steps: - uses: actions/checkout@v6 + with: + persist-credentials: true - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index a1c710c..e5c49b2 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -9,5 +9,7 @@ jobs: steps: - name: Checkout Actions Repository uses: actions/checkout@v6 + with: + persist-credentials: true - name: Check spelling uses: crate-ci/typos@v1.39.2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dc0e20..b04df72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,8 @@ jobs: - windows-latest steps: - uses: actions/checkout@v6 + with: + persist-credentials: true - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} From 7657c7cc343a506306e096addc121ec2896f46d3 Mon Sep 17 00:00:00 2001 From: Max Gruebmeyer Date: Thu, 4 Dec 2025 11:03:01 +0100 Subject: [PATCH 3/3] Revert "Add persist-credentials to checkout@v6" This reverts commit f63baa22a0a6f561579986697931f6572b7df58c. --- .github/workflows/Documenter.yml | 2 -- .github/workflows/Downgrade.yml | 2 -- .github/workflows/SpellCheck.yml | 2 -- .github/workflows/ci.yml | 2 -- 4 files changed, 8 deletions(-) diff --git a/.github/workflows/Documenter.yml b/.github/workflows/Documenter.yml index fdab4dd..691993a 100644 --- a/.github/workflows/Documenter.yml +++ b/.github/workflows/Documenter.yml @@ -27,8 +27,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - with: - persist-credentials: true - uses: julia-actions/setup-julia@v2 with: version: '1' diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index b265707..db5dac8 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -25,8 +25,6 @@ jobs: version: ['1'] steps: - uses: actions/checkout@v6 - with: - persist-credentials: true - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index e5c49b2..a1c710c 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -9,7 +9,5 @@ jobs: steps: - name: Checkout Actions Repository uses: actions/checkout@v6 - with: - persist-credentials: true - name: Check spelling uses: crate-ci/typos@v1.39.2 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b04df72..0dc0e20 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,8 +48,6 @@ jobs: - windows-latest steps: - uses: actions/checkout@v6 - with: - persist-credentials: true - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }}