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
4 changes: 2 additions & 2 deletions .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
- 'tests/src'
- 'python/src'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: clang-format style check
uses: jidicula/clang-format-action@v4.15.0
uses: jidicula/clang-format-action@v4.17.0
with:
clang-format-version: '20'
check-path: ${{ matrix.path }}
4 changes: 2 additions & 2 deletions .github/workflows/clang-tidy-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang-tidy cmake build-essential

- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2.0.0
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores

- name: Configure CMake
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: Windows
steps:
- name: Checkout repository
uses: actions/checkout@v4.0.0
uses: actions/checkout@v6
with:
fetch-depth: 10

Expand Down Expand Up @@ -65,12 +65,12 @@ jobs:
uses: seanmiddleditch/gha-setup-ninja@master

- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2.0.0
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores

- name: Cache Build
id: cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.CACHE_PATH }}
key: ${{ runner.os }}-${{ matrix.config }}-cache
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fail-fast: false
steps:
- name: Checkout Repository
uses: actions/checkout@v4.0.0
uses: actions/checkout@v6
with:
fetch-depth: 10

Expand All @@ -34,12 +34,12 @@ jobs:
echo 'CACHE_PATH=~/.cache/ccache' >> "$GITHUB_ENV"

- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2.0.0
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores

- name: Cache Build
id: cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.CACHE_PATH }}
key: coverage-cache
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
lcov --remove coverage.info --ignore-errors unused '/usr/*' "$HOME/.cache/*" "*tests/*" --output-file coverage.info

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5.5.1
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
files: build/coverage.info
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- Release
steps:
- name: Checkout repository
uses: actions/checkout@v4.0.0
uses: actions/checkout@v6
with:
fetch-depth: 10

Expand All @@ -42,18 +42,18 @@ jobs:
echo 'CACHE_PATH=~/.cache/ccache' >> "$GITHUB_ENV"

- name: cuda-toolkit
uses: Jimver/cuda-toolkit@v0.2.21
uses: Jimver/cuda-toolkit@v0.2.30
with:
sub-packages: '["nvcc"]'
method: 'network'

- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2.0.0
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores

- name: Cache Build
id: cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.CACHE_PATH }}
key: ${{ runner.os }}-${{ matrix.config }}-cache
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6
with:
fetch-depth: 10

- name: Set up Python
uses: actions/setup-python@v5.6.0
uses: actions/setup-python@v6
with:
python-version: "3.13"

Expand All @@ -31,7 +31,7 @@ jobs:

- name: Cache Build
id: cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.CACHE_PATH }}
key: docs-cache
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
touch .nojekyll

- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.4.1
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/build/html # The folder the action should deploy.
6 changes: 3 additions & 3 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
name: macOS

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Build wheels
uses: pypa/cibuildwheel@v3.3.1
uses: pypa/cibuildwheel@v3
# to supply options, put them in 'env', like:
env:
MACOSX_DEPLOYMENT_TARGET: "11.0"
Expand All @@ -60,7 +60,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Build sdist
run: pipx run build --sdist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ jobs:
name: macOS
steps:
- name: Checkout Repository
uses: actions/checkout@v4.0.0
uses: actions/checkout@v6
with:
fetch-depth: 10

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -66,7 +66,7 @@ jobs:

- name: Cache Build
id: cache-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ env.CACHE_PATH }}
key: ${{ runner.os }}-Python${{ matrix.python-version }}-cache
Expand Down
Loading