Skip to content

Commit 8ccff09

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 1c5a0ba + e428285 commit 8ccff09

File tree

6 files changed

+22
-8
lines changed

6 files changed

+22
-8
lines changed

.github/dependabot.yml

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

.github/workflows/miss_hit_quality.yml

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

1616
steps:
1717

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

2323
- name: Set up Python 3.6
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: 3.6
2727

.github/workflows/miss_hit_style.yml

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

1616
steps:
1717

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

2323
- name: Set up Python 3.6
24-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v4
2525
with:
2626
python-version: 3.6
2727

.github/workflows/moxunit.yml

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

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

3333
- name: Code coverage
34-
uses: codecov/codecov-action@v1
34+
uses: codecov/codecov-action@v3
3535
with:
3636
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
3737
file: coverage.xml # optional

.github/workflows/update_submodules.yml

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

.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)