Skip to content

Commit 3dad4a5

Browse files
Update checkout, pre-commit and codecov actions
1 parent d754ad4 commit 3dad4a5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
ports:
1515
- 9000:9000
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python ${{ matrix.python-version }}
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
pytest --cov=./mcbackend --cov-report xml --cov-report term-missing mcbackend/
3737
- name: Upload coverage
38-
uses: codecov/codecov-action@v2
38+
uses: codecov/codecov-action@v3
3939
if: matrix.python-version == 3.9
4040
with:
4141
file: ./coverage.xml

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
env:
1212
SKIP: no-commit-to-branch
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- uses: actions/setup-python@v2
16-
- uses: pre-commit/action@v2.0.0
16+
- uses: pre-commit/action@v3.0.0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
env:
1818
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
with:
2222
fetch-depth: 0
2323
- name: Set up Python

0 commit comments

Comments
 (0)