Skip to content

Commit d293895

Browse files
committed
Merge remote-tracking branch 'upstream/master' into dev
2 parents 00c0632 + 6ad770f commit d293895

File tree

6 files changed

+16
-11
lines changed

6 files changed

+16
-11
lines changed

.github/dependabot.yml

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

.github/workflows/bids_validator.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-22.04
1515
steps:
1616

1717
- uses: actions/setup-node@v3
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v3
2222
with:
2323
submodules: true
24-
fetch-depth: 1
24+
fetch-depth: 0
2525

2626
- name: Make jsonread for octave
2727
run: |

.github/workflows/check_md_links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ jobs:
1414
markdown-link-check:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@master
17+
- uses: actions/checkout@v3
1818
- uses: gaurav-nelson/github-action-markdown-link-check@v1

.github/workflows/miss_hit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414

1515
steps:
1616

17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
submodules: true
2020
fetch-depth: 1
2121

2222
- name: Set up Python 3.6
23-
uses: actions/setup-python@v2
23+
uses: actions/setup-python@v4
2424
with:
2525
python-version: 3.6
2626

.github/workflows/run_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-20.04
1414
steps:
1515

16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
with:
1818
submodules: true
1919
fetch-depth: 1
@@ -37,7 +37,7 @@ jobs:
3737
cover_xml_file: coverage.xml
3838

3939
- name: Code coverage
40-
uses: codecov/codecov-action@v1
40+
uses: codecov/codecov-action@v3
4141
with:
4242
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
4343
file: coverage.xml # optional

.github/workflows/update_submodules.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
# a PR is created using the checkout branch for this workflow
9595
# https://github.com/peter-evans/create-pull-request
9696
- name: Create Pull-Request
97-
uses: peter-evans/create-pull-request@v3
97+
uses: peter-evans/create-pull-request@v4
9898
with:
9999
commit-message: Update submodules
100100
delete-branch: true

0 commit comments

Comments
 (0)