Skip to content
Merged
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/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: Build source distribution and wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # such that setuptools_scm can do its job correctly

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# grab the history of the PR, so we can run pre-commit on a commit range
fetch-depth: 0
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
echo "OMP_NUM_THREADS=$NTHREADS" >> $GITHUB_ENV

- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# grab the history of the PR, so setuptools-scm can compute the correct version number
fetch-depth: 0
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:

steps:
- name: 'Checkout Base Branch (main)'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.base.sha }}

Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
path: benchmarks_data/**/*.json

- name: 'Checkout PR Branch'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
clean: false

Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
steps:

- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# grab the history of the PR, so setuptools-scm can compute the correct version number
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Get latest ruff version
id: latest-version
Expand Down
Loading