Skip to content

Commit 7a63f92

Browse files
author
Hristo Valev
committed
update dependabot
1 parent 1eeaf91 commit 7a63f92

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ updates:
1010
schedule:
1111
interval: weekly
1212
day: saturday
13-
open-pull-requests-limit: 10
13+
open-pull-requests-limit: 10

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ jobs:
6767
- name: Publish distribution 📦 to PyPI
6868
uses: pypa/gh-action-pypi-publish@master
6969
with:
70-
password: ${{ secrets.pypi_password }}
70+
password: ${{ secrets.pypi_password }}

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ on:
99
jobs:
1010
test:
1111
name: Set up python matrix for testing
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
matrix:
15-
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.x']
15+
python-version: [3.8, 3.9, '3.10', '3.x']
1616
steps:
1717
- uses: actions/checkout@master
1818
- name: Setup Python Matrix
@@ -30,6 +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@v3
33+
uses: codecov/codecov-action@v4
3434
with:
35-
fail_ci_if_error: true
35+
fail_ci_if_error: true
36+
token: ${{ secrets.CODECOVTOKEN }}

0 commit comments

Comments
 (0)