Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmark-impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-exes-impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/doc-build-impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release-impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}

Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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 }}
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/test-impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ inputs.ref }}

Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pre-python-impl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down