Skip to content

Commit 42f0c25

Browse files
committed
Merge remote-tracking branch 'origin/main' into dev
2 parents d1cb8cc + 54d556d commit 42f0c25

File tree

6 files changed

+23
-10
lines changed

6 files changed

+23
-10
lines changed

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Documentation
2+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
3+
version: 2
4+
updates:
5+
- package-ecosystem: 'github-actions'
6+
directory: '/'
7+
schedule:
8+
interval: 'monthly'
9+
10+
- package-ecosystem: 'gitsubmodule'
11+
directory: '/'
12+
schedule:
13+
interval: 'monthly'

.github/workflows/miss_hit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
fetch-depth: 1
3232

3333
- name: Set up Python
34-
uses: actions/setup-python@v3
34+
uses: actions/setup-python@v4
3535
with:
3636
python-version: 3.9
3737

.github/workflows/run_tests_matlab.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Install MATLAB
28-
uses: matlab-actions/setup-matlab@v1.0.1
28+
uses: matlab-actions/setup-matlab@v1.2.0
2929
with:
3030
# MATLAB release to set up R2020a
3131
release: R2020a
@@ -49,7 +49,7 @@ jobs:
4949
run: make install_dev
5050

5151
- name: Run commands
52-
uses: matlab-actions/run-command@v1.0.1
52+
uses: matlab-actions/run-command@v1.1.0
5353
with:
5454
command: cd(fullfile(getenv('GITHUB_WORKSPACE'), '.github', 'workflows')); run tests_matlab;
5555

@@ -59,7 +59,7 @@ jobs:
5959
bash <(curl -s https://codecov.io/bash)
6060
6161
- name: Code coverage
62-
uses: codecov/codecov-action@v1
62+
uses: codecov/codecov-action@v3
6363
with:
6464
file: coverage.xml # optional
6565
flags: unittests # optional

.github/workflows/update-contributors.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: allcontributors-auto-detect
33
on:
44
schedule:
55
# Run nightly 1am
6-
- cron: 0 1 * * *
6+
- cron: 0 1 1 * *
77

88
# You can also have it check for changes on each push to master
99
push:
@@ -39,12 +39,12 @@ jobs:
3939

4040
- name: Create Pull Request
4141
id: cpr
42-
uses: peter-evans/create-pull-request@v3
42+
uses: peter-evans/create-pull-request@v4
4343
with:
44-
commit-message: BIDS schema update
44+
commit-message: update tributors
4545
base: main
4646
delete-branch: true
47-
title: '[BOT] update git submodules'
47+
title: '[BOT] update tributors'
4848
body: 'done via this [GitHub Action](https://github.com/cpp-lln-lab/CPP_ROI/blob/main/.github/workflows/update-contributors.yml)'
4949

5050
- name: Check outputs

.github/workflows/validate_cff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fetch-depth: 1
2626

2727
- name: Set up Python
28-
uses: actions/setup-python@v3
28+
uses: actions/setup-python@v4
2929
with:
3030
python-version: 3.9
3131

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repos:
2828
additional_dependencies: [miss_hit]
2929

3030
- repo: https://github.com/pre-commit/pre-commit-hooks
31-
rev: v4.2.0
31+
rev: v4.3.0
3232
hooks:
3333
- id: trailing-whitespace
3434
- id: end-of-file-fixer

0 commit comments

Comments
 (0)