From a128925bfa0f9c943bcd174877407bf8f7aafde3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 13:04:44 +0000 Subject: [PATCH] build(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/benchmark-impl.yml | 2 +- .github/workflows/build-exes-impl.yml | 10 ++++----- .github/workflows/doc-build-impl.yml | 4 ++-- .github/workflows/release-impl.yml | 18 ++++++++-------- .github/workflows/test-impl.yml | 24 +++++++++++----------- .github/workflows/test-pre-python-impl.yml | 2 +- 6 files changed, 30 insertions(+), 30 deletions(-) diff --git a/.github/workflows/benchmark-impl.yml b/.github/workflows/benchmark-impl.yml index 92c6012..28c8c20 100644 --- a/.github/workflows/benchmark-impl.yml +++ b/.github/workflows/benchmark-impl.yml @@ -58,7 +58,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Set up python ${{ matrix.python-version }} diff --git a/.github/workflows/build-exes-impl.yml b/.github/workflows/build-exes-impl.yml index 50e2161..c4ee5f3 100644 --- a/.github/workflows/build-exes-impl.yml +++ b/.github/workflows/build-exes-impl.yml @@ -142,7 +142,7 @@ jobs: sha: ${{ steps.info.outputs.sha }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # get all history and tags - name: Get executable version name and store git SHA @@ -166,7 +166,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ needs.status.outputs.sha }} @@ -223,7 +223,7 @@ jobs: runs-on: windows-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup tmate session if: inputs.tmate_debugging == 'true' @@ -355,7 +355,7 @@ jobs: runs-on: macos-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup tmate session if: inputs.tmate_debugging == 'true' @@ -482,7 +482,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup tmate session if: inputs.tmate_debugging == 'true' diff --git a/.github/workflows/doc-build-impl.yml b/.github/workflows/doc-build-impl.yml index 330b191..c2e27f0 100644 --- a/.github/workflows/doc-build-impl.yml +++ b/.github/workflows/doc-build-impl.yml @@ -85,11 +85,11 @@ jobs: artifact-url: ${{ steps.upload.outputs.artifact-url }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Checkout support code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: hpcflow/github-support path: github-support diff --git a/.github/workflows/release-impl.yml b/.github/workflows/release-impl.yml index e76345e..91af8bd 100644 --- a/.github/workflows/release-impl.yml +++ b/.github/workflows/release-impl.yml @@ -170,7 +170,7 @@ jobs: changelog: ${{ steps.upload-changelog.outputs.artifact-url }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # get all history and tags ref: ${{ inputs.pr-base-ref }} @@ -304,7 +304,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.pr-base-ref }} @@ -362,7 +362,7 @@ jobs: BUILT_EXE_PATH_FILE: ${{ inputs.pyinstaller_dir }}/dist/onefile/${{ inputs.executable_name }}-${{ needs.bump-version.outputs.new_tag }}-${{ matrix.executable_os }}${{ matrix.executable_ext }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.pr-base-ref }} # otherwise we get the ref when the workflow started (missing above commit) - name: Set up python ${{ inputs.python-version }} @@ -480,7 +480,7 @@ jobs: BUILT_EXE_PATH_FILE: ${{ inputs.pyinstaller_dir }}/dist/onefile/${{ inputs.executable_name }}-${{ needs.bump-version.outputs.new_tag }}-linux steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.pr-base-ref }} # otherwise we get the ref when the workflow started (missing above commit) - name: Cache dependencies @@ -580,7 +580,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.ref }} - name: Set up python ${{ inputs.python-version }} @@ -633,7 +633,7 @@ jobs: benchmark-url: ${{ steps.upload.outputs.artifact-url }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.ref }} - name: Make benchmark directory @@ -669,7 +669,7 @@ jobs: contents: write steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.pr-base-ref }} # otherwise we get the ref when the workflow started (missing above commit) - name: Set up python ${{ inputs.python-version }} @@ -749,7 +749,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # get all history and tags ref: ${{ inputs.pr-base-ref }} # otherwise we get the ref when the workflow started (missing above commit) @@ -822,7 +822,7 @@ jobs: python-version: ${{ inputs.python-version }} - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: ${{ inputs.website_source_org }}/${{ inputs.website_source_repo }} token: ${{ secrets.website-token }} diff --git a/.github/workflows/test-impl.yml b/.github/workflows/test-impl.yml index 1fcacdc..cdecf28 100644 --- a/.github/workflows/test-impl.yml +++ b/.github/workflows/test-impl.yml @@ -146,7 +146,7 @@ jobs: timeout-minutes: 2 steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: token: ${{ secrets.pre-commit-token }} # checkout PR source branch (head_ref) if event is pull_request: @@ -184,7 +184,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} @@ -239,7 +239,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Set up python ${{ matrix.python-version }} @@ -295,7 +295,7 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Cache dependencies @@ -346,7 +346,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Set up python ${{ matrix.python-version }} @@ -401,7 +401,7 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Cache dependencies @@ -447,11 +447,11 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Checkout supporting test infrastructure - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: hpcflow/github-support path: github-support @@ -552,11 +552,11 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Checkout supporting test infrastructure - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: hpcflow/github-support path: github-support @@ -657,11 +657,11 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Checkout supporting test infrastructure - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: hpcflow/github-support path: github-support diff --git a/.github/workflows/test-pre-python-impl.yml b/.github/workflows/test-pre-python-impl.yml index a62e27d..0d91667 100644 --- a/.github/workflows/test-pre-python-impl.yml +++ b/.github/workflows/test-pre-python-impl.yml @@ -46,7 +46,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ inputs.ref }} - name: Set up python ${{ matrix.python-version }}