From 9835e9dddca28b355ec2ec783a85cda64f15ff8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 14:50:09 +0000 Subject: [PATCH] build(deps): 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 | 12 ++++++------ .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/quay-publish.yml | 2 +- .github/workflows/wheels.yml | 12 ++++++------ 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 5237a294..00c18f82 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -27,7 +27,7 @@ jobs: py-semver: ${{ format('{0}.{1}', matrix.py-ver-major, matrix.py-ver-minor) }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -76,7 +76,7 @@ jobs: TOXENV: ${{ matrix.step }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 @@ -102,7 +102,7 @@ jobs: name: Confirm that codegen typescript passes tests with CWL runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Node uses: actions/setup-node@v4 - name: Set up Python @@ -138,7 +138,7 @@ jobs: steps: - name: Install C++ dependencies run: sudo apt-get install libyaml-cpp-dev - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 with: @@ -166,7 +166,7 @@ jobs: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up Python uses: actions/setup-python@v5 @@ -192,7 +192,7 @@ jobs: build_test_container: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: record schema-salad version run: | python3 -m venv env diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 590404bb..8eb2e7cf 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # We must fetch at least the immediate parents so that if this is # a pull request then we can checkout the head. diff --git a/.github/workflows/quay-publish.yml b/.github/workflows/quay-publish.yml index 83f34bd9..43b102e6 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 - name: Get image tags id: image_tags run: | diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 116a40ab..ffc064de 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -27,11 +27,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 @@ -63,11 +63,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 @@ -89,11 +89,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