diff --git a/.github/workflows/run_tests_notebooks.yml b/.github/workflows/run_tests_notebooks.yml index 9d9750dc..a0a35ea3 100644 --- a/.github/workflows/run_tests_notebooks.yml +++ b/.github/workflows/run_tests_notebooks.yml @@ -46,7 +46,7 @@ jobs: git clone https://github.com/spm/spm12.git --depth 1 - name: Test notebooks - uses: matlab-actions/run-command@v2.3.0 + uses: matlab-actions/run-command@v2.4.0 with: command: | root_dir = getenv('GITHUB_WORKSPACE'); diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 454f2c2c..f83398ee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -113,7 +113,7 @@ jobs: release: ${{ matrix.matlab }} - name: Run fast unit tests MATLAB - uses: matlab-actions/run-command@v2.3.0 + uses: matlab-actions/run-command@v2.4.0 with: command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run tests_matlab; @@ -208,7 +208,7 @@ jobs: release: ${{ matrix.matlab }} - name: Run slow unit tests MATLAB - uses: matlab-actions/run-command@v2.3.0 + uses: matlab-actions/run-command@v2.4.0 with: command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); global SLOW; SLOW=true; run tests_matlab; @@ -304,6 +304,6 @@ jobs: release: ${{ matrix.matlab }} - name: Run system tests MATLAB ${{ matrix.script }} - uses: matlab-actions/run-command@v2.3.0 + uses: matlab-actions/run-command@v2.4.0 with: command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run system_tests_${{ matrix.script }}; diff --git a/.github/workflows/tests_windows.yml b/.github/workflows/tests_windows.yml index 4579a3da..b7e653ef 100644 --- a/.github/workflows/tests_windows.yml +++ b/.github/workflows/tests_windows.yml @@ -113,13 +113,13 @@ jobs: - name: Run fast unit tests MATLAB if: matrix.test_type == 'unit' && matrix.mode == 'fast' - uses: matlab-actions/run-command@v2.3.0 + uses: matlab-actions/run-command@v2.4.0 with: command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run tests_matlab; - name: Run slow unit tests MATLAB if: matrix.test_type == 'unit' && matrix.mode == 'slow' - uses: matlab-actions/run-command@v2.3.0 + uses: matlab-actions/run-command@v2.4.0 with: command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); global SLOW; SLOW=true; run tests_matlab; @@ -135,6 +135,6 @@ jobs: - name: Run system tests MATLAB ${{ matrix.script }} if: matrix.test_type == 'system' - uses: matlab-actions/run-command@v2.3.0 + uses: matlab-actions/run-command@v2.4.0 with: command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run system_tests_${{ matrix.script }};