From 4f13f425a55a418a6e1908831a2f55704289c69f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 14:48:03 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/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) --- 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/CI.yml | 4 ++-- .github/workflows/Integration.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index bc5bc889..f5ad4416 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -32,7 +32,7 @@ jobs: arch: - x64 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} @@ -54,7 +54,7 @@ jobs: contents: write statuses: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: "1" diff --git a/.github/workflows/Integration.yml b/.github/workflows/Integration.yml index d9bff524..7901d945 100644 --- a/.github/workflows/Integration.yml +++ b/.github/workflows/Integration.yml @@ -35,14 +35,14 @@ jobs: - {user: PalmStudio, repo: XPalm.jl, branch: main, default: main} - {user: VEZY, repo: PlantBioPhysics.jl, branch: master, default: master} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - uses: julia-actions/julia-buildpkg@v1 - name: Clone Downstream - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: ${{ matrix.package.user }}/${{ matrix.package.repo }} ref: ${{matrix.package.branch}}