Skip to content
Merged
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
22 changes: 11 additions & 11 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

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

- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2
uses: matlab-actions/setup-matlab@v3
with:
release: ${{ matrix.matlab_release }}
products: MATLAB
Expand All @@ -61,7 +61,7 @@ jobs:
echo "MATLAB_ROOT=$(dirname $(dirname $(which matlab)))" >> $GITHUB_ENV

- name: Cache pip packages
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ env.PYTHON_VERSION }}-${{ hashFiles('**/requirements.txt') }}-${{ github.sha }}
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
- name: Cache Boost installation
if: matrix.use_system_packages == false
id: cache-boost
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/boost
key: boost-${{ env.BOOST_VERSION }}-${{ runner.os }}-${{ matrix.name }}-${{ github.sha }}
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
- name: Cache HDF5 installation
if: matrix.use_system_packages == false
id: cache-hdf5
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/hdf5
key: hdf5-${{ env.HDF5_VERSION }}-${{ runner.os }}-${{ matrix.name }}-${{ github.sha }}
Expand Down Expand Up @@ -391,7 +391,7 @@ jobs:

- name: Upload build artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-artifacts-${{ matrix.name }}
path: |
Expand All @@ -403,7 +403,7 @@ jobs:

- name: Upload installation
if: success()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: installation-${{ matrix.name }}
path: install/
Expand All @@ -415,10 +415,10 @@ jobs:

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

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

Expand Down Expand Up @@ -495,7 +495,7 @@ jobs:

- name: Upload documentation
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: documentation
path: doc/_build/html/
Expand Down
Loading