From 51d6fb26393d3fa6cc3c25d276cf34ee7b1f91ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 21:12:51 +0000 Subject: [PATCH] build(deps): 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/1_create_release_pr.yml | 2 +- .github/workflows/2_auto_publish_release.yml | 2 +- .github/workflows/build.yml | 2 +- .github/workflows/shortlog.yml | 2 +- .github/workflows/tests.yml | 8 ++++---- .github/workflows/update_copyright.yml | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/1_create_release_pr.yml b/.github/workflows/1_create_release_pr.yml index 5e6229b..0bbe58f 100644 --- a/.github/workflows/1_create_release_pr.yml +++ b/.github/workflows/1_create_release_pr.yml @@ -35,7 +35,7 @@ jobs: uses: cylc/release-actions/stage-1/sanitize-inputs@v1 - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.BASE_REF }} fetch-depth: 0 # need to fetch all commits to check contributors diff --git a/.github/workflows/2_auto_publish_release.yml b/.github/workflows/2_auto_publish_release.yml index 9ce87e7..1c02d1d 100644 --- a/.github/workflows/2_auto_publish_release.yml +++ b/.github/workflows/2_auto_publish_release.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ env.MERGE_SHA }} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1120923..b0d1b23 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,7 @@ jobs: name: ${{ matrix.os }} py-${{ matrix.python }} steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Python uses: mamba-org/setup-micromamba@v2 diff --git a/.github/workflows/shortlog.yml b/.github/workflows/shortlog.yml index 8e3d666..206dcbc 100644 --- a/.github/workflows/shortlog.yml +++ b/.github/workflows/shortlog.yml @@ -15,7 +15,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # need to fetch all commits to check contributors diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 60d7528..28972a8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -32,7 +32,7 @@ jobs: PYTEST_ADDOPTS: --cov --cov-append --color=yes steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Configure Python uses: mamba-org/setup-micromamba@v2 @@ -57,7 +57,7 @@ jobs: pip install -e .[tests] - name: Checkout FCM - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ github.event.inputs.fcm_repo || 'metomi/fcm' }} ref: ${{ github.event.inputs.fcm_ref || 'master' }} @@ -117,7 +117,7 @@ jobs: timeout-minutes: 2 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Configure Python uses: mamba-org/setup-micromamba@v2 @@ -155,7 +155,7 @@ jobs: timeout-minutes: 2 steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Download coverage artifacts uses: actions/download-artifact@v6 diff --git a/.github/workflows/update_copyright.yml b/.github/workflows/update_copyright.yml index ed0b989..84864ee 100644 --- a/.github/workflows/update_copyright.yml +++ b/.github/workflows/update_copyright.yml @@ -11,7 +11,7 @@ jobs: timeout-minutes: 10 steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Configure git uses: cylc/release-actions/configure-git@v1