From 722a9f1120348ae8ddbf2bed9a10c5de7e2b5d68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 07:25:06 +0000 Subject: [PATCH] Bump the all-github-actions-packages group with 5 updates Bumps the all-github-actions-packages group with 5 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) | `1` | `3` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `3` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | 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 1 to 3 - [Release notes](https://github.com/julia-actions/cache/releases) - [Commits](https://github.com/julia-actions/cache/compare/v1...v3) Updates `codecov/codecov-action` from 3 to 6 - [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/v3...v6) Updates `actions/cache` from 4 to 5 - [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/v4...v5) --- 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 - dependency-name: codecov/codecov-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions-packages - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions-packages ... Signed-off-by: dependabot[bot] --- .github/workflows/AutoDiffIntegration.yml | 8 ++++---- .github/workflows/Benchmark.yml | 6 +++--- .github/workflows/DocNav.yml | 2 +- .github/workflows/DynamicPPL.yml | 8 ++++---- .github/workflows/Tests.yml | 8 ++++---- 5 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/AutoDiffIntegration.yml b/.github/workflows/AutoDiffIntegration.yml index f174b53b2..fc290ab4e 100644 --- a/.github/workflows/AutoDiffIntegration.yml +++ b/.github/workflows/AutoDiffIntegration.yml @@ -25,18 +25,18 @@ jobs: - 'lts' - '1' 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 }} - - uses: julia-actions/cache@v1 + - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 env: GROUP: AD AD: ${{ inputs.AD }} - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v6 with: files: lcov.info diff --git a/.github/workflows/Benchmark.yml b/.github/workflows/Benchmark.yml index 14e7d57b6..656eb2184 100644 --- a/.github/workflows/Benchmark.yml +++ b/.github/workflows/Benchmark.yml @@ -19,12 +19,12 @@ jobs: benchmark: 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: 'lts' arch: x64 - - uses: actions/cache@v4 + - uses: actions/cache@v5 env: cache-name: cache-artifacts with: diff --git a/.github/workflows/DocNav.yml b/.github/workflows/DocNav.yml index 7e8619587..50a284fce 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/DynamicPPL.yml b/.github/workflows/DynamicPPL.yml index bf9a590e2..2cefec5f5 100644 --- a/.github/workflows/DynamicPPL.yml +++ b/.github/workflows/DynamicPPL.yml @@ -24,17 +24,17 @@ jobs: - 'lts' - '1' 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 }} - - uses: julia-actions/cache@v1 + - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 env: GROUP: DynamicPPL AD: ReverseDiff - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v6 with: files: lcov.info diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 8815e3e93..ee5ad8010 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -24,17 +24,17 @@ jobs: - 'lts' - '1' 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 }} - - uses: julia-actions/cache@v1 + - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 env: GROUP: All AD: ReverseDiff - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v6 with: files: lcov.info