From fdf74a08848c6d9bb1504b28905c3e03de4f306f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 07:02:34 +0000 Subject: [PATCH] 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/ci-tests.yml | 14 +++++++------- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/quay-publish.yml | 2 +- .github/workflows/wheels.yml | 12 ++++++------ 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index d40fd1b1f..b8812e292 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -40,7 +40,7 @@ jobs: TOXENV: ${{ format('py{0}{1}-{2}', matrix.py-ver-major, matrix.py-ver-minor, matrix.step) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -103,7 +103,7 @@ jobs: TOXENV: ${{ format('py313-{0}', matrix.step) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -131,7 +131,7 @@ jobs: env: py-semver: "3.13" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -181,7 +181,7 @@ jobs: extras: "--relax-path-checks" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Singularity and environment-modules if: ${{ matrix.container == 'singularity' }} @@ -230,7 +230,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Singularity and environment-modules run: | @@ -262,7 +262,7 @@ jobs: build_test_container: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: record cwltool version @@ -276,7 +276,7 @@ jobs: env: TOXENV: py313-unit steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d4e0a37c2..531b500dd 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/quay-publish.yml b/.github/workflows/quay-publish.yml index 4278a927b..8abb76d5a 100644 --- a/.github/workflows/quay-publish.yml +++ b/.github/workflows/quay-publish.yml @@ -8,7 +8,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Get image tags diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 7c20117bb..cd4416362 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -27,11 +27,11 @@ jobs: build: "*musllinux*" steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ github.event_name != 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ github.event_name == 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags @@ -63,11 +63,11 @@ jobs: name: Build source distribution runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ github.event_name != 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ github.event_name == 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags @@ -89,11 +89,11 @@ jobs: # macos-15-intel is an intel runner, macos-14 is apple silicon os: [macos-15-intel, macos-14, macos-15] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ github.event_name != 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: ${{ github.event_name == 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags