Skip to content

Commit 9e7238a

Browse files
committed
2 parents db93ecd + 960fcb8 commit 9e7238a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@master
1818
- name: Setup Python Matrix
19-
uses: actions/setup-python@v1
19+
uses: actions/setup-python@v4
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
pytest --cov=./py_markdown_table/ ./tests/tests.py --cov-report=xml
3232
- name: Upload coverage to Codecov
33-
uses: codecov/codecov-action@v1
33+
uses: codecov/codecov-action@v3
3434
with:
3535
fail_ci_if_error: true
3636
build:
@@ -40,7 +40,7 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@master
4242
- name: Setup Python 3.9
43-
uses: actions/setup-python@v1
43+
uses: actions/setup-python@v4
4444
with:
4545
python-version: 3.9
4646
- name: Install dependencies

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@master
1818
- name: Setup Python Matrix
19-
uses: actions/setup-python@v1
19+
uses: actions/setup-python@v4
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
- name: Install dependencies
@@ -30,6 +30,6 @@ jobs:
3030
run: |
3131
pytest --cov=./py_markdown_table/ ./tests/tests.py --cov-report=xml
3232
- name: Upload coverage to Codecov
33-
uses: codecov/codecov-action@v1
33+
uses: codecov/codecov-action@v3
3434
with:
3535
fail_ci_if_error: true

0 commit comments

Comments
 (0)