Skip to content

Commit 655cdc3

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents edfeb88 + 055f8d4 commit 655cdc3

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/on-push.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
shell: bash -l {0}
1919

2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v3
2222
- name: Cache conda
2323
uses: actions/cache@v2
2424
with:
@@ -44,7 +44,7 @@ jobs:
4444
run: |
4545
make test COV_REPORT=xml
4646
- name: Upload code coverage to Codecov
47-
uses: codecov/codecov-action@v1
47+
uses: codecov/codecov-action@v2.1.0
4848

4949
code-quality:
5050
runs-on: ubuntu-latest
@@ -53,7 +53,7 @@ jobs:
5353
shell: bash -l {0}
5454

5555
steps:
56-
- uses: actions/checkout@v2
56+
- uses: actions/checkout@v3
5757
- name: Cache conda
5858
uses: actions/cache@v2
5959
with:
@@ -87,7 +87,7 @@ jobs:
8787
needs: [unit-tests, code-quality]
8888

8989
steps:
90-
- uses: actions/checkout@v2
90+
- uses: actions/checkout@v3
9191
- name: Build distributions
9292
run: |
9393
$CONDA/bin/python -m pip install build

0 commit comments

Comments
 (0)