From b8d8cedae96cc68aa5aecc64d55894e1f6781fa6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 17:18:09 +0200 Subject: [PATCH] Bump matlab-actions/run-command from 2.1.0 to 2.1.1 (#1234) Bumps [matlab-actions/run-command](https://github.com/matlab-actions/run-command) from 2.1.0 to 2.1.1. - [Release notes](https://github.com/matlab-actions/run-command/releases) - [Commits](https://github.com/matlab-actions/run-command/compare/v2.1.0...v2.1.1) --- updated-dependencies: - dependency-name: matlab-actions/run-command dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/run_tests_notebooks.yml | 2 +- .github/workflows/tests.yml | 6 +++--- .github/workflows/tests_windows.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run_tests_notebooks.yml b/.github/workflows/run_tests_notebooks.yml index 8219d8c3a..6381db615 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.1.0 + uses: matlab-actions/run-command@v2.1.1 with: command: | root_dir = getenv('GITHUB_WORKSPACE'); diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 43bc98f97..a71bddeeb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -134,13 +134,13 @@ jobs: - name: Run fast unit tests MATLAB if: matrix.test_type == 'unit' && matrix.mode == 'fast' - uses: matlab-actions/run-command@v2.1.0 + uses: matlab-actions/run-command@v2.1.1 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.1.0 + uses: matlab-actions/run-command@v2.1.1 with: command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); global SLOW; SLOW=true; run tests_matlab; @@ -156,6 +156,6 @@ jobs: - name: Run system tests MATLAB ${{ matrix.script }} if: matrix.test_type == 'system' - uses: matlab-actions/run-command@v2.1.0 + uses: matlab-actions/run-command@v2.1.1 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 1d6affe54..20661c73e 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.1.0 + uses: matlab-actions/run-command@v2.1.1 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.1.0 + uses: matlab-actions/run-command@v2.1.1 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.1.0 + uses: matlab-actions/run-command@v2.1.1 with: command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run system_tests_${{ matrix.script }};