From 903865f9cfc700ee193a6a65f3efa938e5550921 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 14:34: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-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 1295eebf1..08bb96e07 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@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -100,7 +100,7 @@ jobs: TOXENV: ${{ format('py312-{0}', matrix.step) }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -128,7 +128,7 @@ jobs: env: py-semver: "3.12" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -178,7 +178,7 @@ jobs: extras: "--relax-path-checks" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Singularity and environment-modules if: ${{ matrix.container == 'singularity' }} @@ -227,7 +227,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Singularity and environment-modules run: | @@ -259,7 +259,7 @@ jobs: build_test_container: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: record cwltool version @@ -273,7 +273,7 @@ jobs: env: TOXENV: py312-unit steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Set up Python diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 3b84a185b..838afa533 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@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/quay-publish.yml b/.github/workflows/quay-publish.yml index 16652ef44..4278a927b 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@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 - name: Get image tags diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 1ea7465cf..d43c11bd7 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -26,11 +26,11 @@ jobs: build: "*musllinux*" steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ github.event_name != 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ github.event_name == 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags @@ -66,11 +66,11 @@ jobs: name: Build source distribution runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ github.event_name != 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ github.event_name == 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags @@ -92,11 +92,11 @@ jobs: # macos-13 is an intel runner, macos-14 is apple silicon os: [macos-13, macos-14] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ github.event_name != 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ github.event_name == 'repository_dispatch' }} with: fetch-depth: 0 # slow, but gets all the tags