From 197196f4b8ebe1e8b08dab468cd56dd5d1378bc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 12:47:28 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- .github/workflows/nightly.yml | 4 ++-- .github/workflows/publish.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a10cae..5cd7111 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: outputs: triggered: ${{ steps.detect-trigger.outputs.trigger-found }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 2 - uses: xarray-contrib/ci-trigger@v1 @@ -40,7 +40,7 @@ jobs: steps: - name: checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # need to fetch all tags to get a correct version fetch-depth: 0 # fetch all branches and tags @@ -72,7 +72,7 @@ jobs: steps: - name: checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: setup python uses: actions/setup-python@v5 diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9fc3b10..be0303b 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -23,7 +23,7 @@ jobs: outputs: triggered: ${{ steps.detect-trigger.outputs.trigger-found }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 2 - uses: xarray-contrib/ci-trigger@v1 @@ -58,7 +58,7 @@ jobs: steps: - name: checkout the repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # need to fetch all tags to get a correct version fetch-depth: 0 # fetch all branches and tags diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 81e95d2..d8ba52e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: if: github.repository == 'keewis/blackdoc' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: