From 5c8564cbbbbe4c53f238813c80c1db65776d403e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 07:19:09 +0000 Subject: [PATCH] Bump matlab-actions/run-command from 2 to 3 Bumps [matlab-actions/run-command](https://github.com/matlab-actions/run-command) from 2 to 3. - [Release notes](https://github.com/matlab-actions/run-command/releases) - [Commits](https://github.com/matlab-actions/run-command/compare/v2...v3) --- updated-dependencies: - dependency-name: matlab-actions/run-command dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 7de0cce..8020f8f 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -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@v2 + uses: matlab-actions/run-command@v3 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);