From c0b97c7d2a6aff4fb97b7e26753adda3abe99444 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 18:02:49 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 6 +++--- .github/workflows/pr.yaml | 14 +++++++------- .github/workflows/release.yml | 10 +++++----- .github/workflows/update.yml | 4 ++-- 4 files changed, 17 insertions(+), 17 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e1cd040d..32111e47 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -57,7 +57,7 @@ jobs: # are not available as wheels, pip will build a wheel for them, which can be cached. - name: Install wheel run: pip install wheel - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - name: Fake a Planemo run to update cache and determine commit range, repositories, and chunks @@ -85,7 +85,7 @@ jobs: matrix: python-version: ['3.11'] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - uses: actions/setup-python@v6 @@ -135,7 +135,7 @@ jobs: steps: # checkout the repository # and use it as the current working directory - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - uses: actions/setup-python@v6 diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 73fd0edc..b6cebb2f 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -83,7 +83,7 @@ jobs: run: pip install wheel - name: Install flake8 run: pip install flake8 flake8-import-order - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Fake a Planemo run to update cache and determine commit range, repositories, and chunks @@ -116,7 +116,7 @@ jobs: matrix: python-version: ["3.11"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - uses: actions/setup-python@v6 @@ -160,7 +160,7 @@ jobs: matrix: python-version: ["3.11"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - uses: actions/setup-python@v6 @@ -192,7 +192,7 @@ jobs: os: [ubuntu-24.04] r-version: ["release"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - uses: r-lib/actions/setup-r@v2 @@ -227,7 +227,7 @@ jobs: if: ${{ github.event_name == 'pull_request' && needs.setup.outputs.repository-list != '' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 - name: Check file sizes @@ -270,7 +270,7 @@ jobs: ports: - 5432:5432 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - uses: actions/setup-python@v6 @@ -373,7 +373,7 @@ jobs: matrix: python-version: ["3.11"] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 - uses: actions/setup-python@v6 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ab82ef54..65aafeef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: outputs: nb: ${{ steps.set-diff.outputs.nb }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -31,7 +31,7 @@ jobs: tag: ${{ steps.tag_label.outputs.tag }} changelog: ${{ steps.tag_raw.outputs.changelog }} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -56,7 +56,7 @@ jobs: if: ${{ needs.Diff.outputs.nb > 0 }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -90,7 +90,7 @@ jobs: steps: # Get Data - name: 'Checkout' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 @@ -124,7 +124,7 @@ jobs: if: ${{ needs.Diff.outputs.nb > 0 }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: persist-credentials: false fetch-depth: 0 diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index dac6b97c..7b93d65b 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -15,7 +15,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - name: 'Checkout' - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: 'List repos' id: set-matrix run: echo "matrix=$(find tools -mindepth 1 -maxdepth 1 -type d | jq -R -s -c 'split("\n")[:-1] | map(split("/")[-1])')" >> "${GITHUB_OUTPUT}" @@ -29,7 +29,7 @@ jobs: repo: ${{ fromJson(needs.list.outputs.matrix) }} steps: - name: 'Checkout' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ secrets.USER_TOKEN }} ref: main