diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 2cb8398..6e3376d 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -55,7 +55,7 @@ jobs: # Install MATLAB (GitHub action provided by MathWorks) - name: Install MATLAB - uses: matlab-actions/setup-matlab@v1 + uses: matlab-actions/setup-matlab@v2 # Download artifact from "build" - name: Download artifact from build @@ -67,7 +67,7 @@ jobs: # in dir "src", try to build the mex file with help of the artifact # and verify it works as inteded (by test_whamp_module.m) - name: Run commands - uses: matlab-actions/run-command@v1 + uses: matlab-actions/run-command@v2 with: command: cd('src'); mex -R2017b libwhamp.a mexwhamp.F; movefile('mexwhamp.mexa64', '../matlab/+whamp/mexwhamp.mexa64'); cd('../matlab'); addpath(pwd); test=whamp.test_whamp_module; assertSuccess(test.run);