Skip to content

Commit

Permalink
[MAINT] Bump actions and submodules (#1216)
Browse files Browse the repository at this point in the history
* Bump matlab-actions/run-command from 2.0.0 to 2.1.0 (#85)

Bumps [matlab-actions/run-command](https://github.com/matlab-actions/run-command) from 2.0.0 to 2.1.0.
- [Release notes](https://github.com/matlab-actions/run-command/releases)
- [Commits](matlab-actions/run-command@v2.0.0...v2.1.0)

---
updated-dependencies:
- dependency-name: matlab-actions/run-command
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump matlab-actions/setup-matlab from 2.0.0 to 2.1.0 (#86)

Bumps [matlab-actions/setup-matlab](https://github.com/matlab-actions/setup-matlab) from 2.0.0 to 2.1.0.
- [Release notes](https://github.com/matlab-actions/setup-matlab/releases)
- [Commits](matlab-actions/setup-matlab@v2.0.0...v2.1.0)

---
updated-dependencies:
- dependency-name: matlab-actions/setup-matlab
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lib/spm_2_bids from `b61ac2d` to `6ecd2d6` (#87)

Bumps [lib/spm_2_bids](https://github.com/cpp-lln-lab/spm_2_bids) from `b61ac2d` to `6ecd2d6`.
- [Release notes](https://github.com/cpp-lln-lab/spm_2_bids/releases)
- [Commits](cpp-lln-lab/spm_2_bids@b61ac2d...6ecd2d6)

---
updated-dependencies:
- dependency-name: lib/spm_2_bids
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump lib/octache from `e301b86` to `70b45a5` (#88)

Bumps [lib/octache](https://github.com/Remi-Gau/Octache) from `e301b86` to `70b45a5`.
- [Release notes](https://github.com/Remi-Gau/Octache/releases)
- [Commits](Remi-Gau/Octache@e301b86...70b45a5)

---
updated-dependencies:
- dependency-name: lib/octache
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
Remi-Gau and dependabot[bot] authored Mar 14, 2024
1 parent d970078 commit 4e75277
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_tests_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
sudo apt-get -y install unzip wget tree
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v2.0.0
uses: matlab-actions/setup-matlab@v2.1.0
with:
# MATLAB release to set up R2020a
release: R2023a
Expand All @@ -49,7 +49,7 @@ jobs:
run: cp -rv lib/MACS spm12/toolbox/MACS

- name: Test notebooks
uses: matlab-actions/run-command@v2.0.0
uses: matlab-actions/run-command@v2.1.0
with:
command: |
root_dir = getenv('GITHUB_WORKSPACE');
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,19 +131,19 @@ jobs:
git clone https://github.com/MOcov/MOcov.git --depth 1
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v2.0.0
uses: matlab-actions/setup-matlab@v2.1.0
with:
release: ${{ matrix.matlab }}

- name: Run fast unit tests MATLAB
if: matrix.test_type == 'unit' && matrix.mode == 'fast'
uses: matlab-actions/run-command@v2.0.0
uses: matlab-actions/run-command@v2.1.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.0.0
uses: matlab-actions/run-command@v2.1.0
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); global SLOW; SLOW=true; run tests_matlab;

Expand All @@ -159,6 +159,6 @@ jobs:

- name: Run system tests MATLAB ${{ matrix.script }}
if: matrix.test_type == 'system'
uses: matlab-actions/run-command@v2.0.0
uses: matlab-actions/run-command@v2.1.0
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run system_tests_${{ matrix.script }};
8 changes: 4 additions & 4 deletions .github/workflows/tests_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,19 @@ jobs:
git clone https://github.com/MOcov/MOcov.git --depth 1
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v2.0.0
uses: matlab-actions/setup-matlab@v2.1.0
with:
release: ${{ matrix.matlab }}

- name: Run fast unit tests MATLAB
if: matrix.test_type == 'unit' && matrix.mode == 'fast'
uses: matlab-actions/run-command@v2.0.0
uses: matlab-actions/run-command@v2.1.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.0.0
uses: matlab-actions/run-command@v2.1.0
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); global SLOW; SLOW=true; run tests_matlab;

Expand All @@ -138,6 +138,6 @@ jobs:

- name: Run system tests MATLAB ${{ matrix.script }}
if: matrix.test_type == 'system'
uses: matlab-actions/run-command@v2.0.0
uses: matlab-actions/run-command@v2.1.0
with:
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run system_tests_${{ matrix.script }};
2 changes: 1 addition & 1 deletion lib/octache
2 changes: 1 addition & 1 deletion lib/spm_2_bids

0 comments on commit 4e75277

Please sign in to comment.