diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ff22ef3..fff5e1b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@master - name: Setup Python Matrix - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -30,7 +30,7 @@ jobs: run: | pytest --cov=./py_markdown_table/ ./tests/tests.py --cov-report=xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 with: fail_ci_if_error: true build: @@ -40,7 +40,7 @@ jobs: steps: - uses: actions/checkout@master - name: Setup Python 3.9 - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: 3.9 - name: Install dependencies diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c46da2..0e1dc8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@master - name: Setup Python Matrix - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -30,6 +30,6 @@ jobs: run: | pytest --cov=./py_markdown_table/ ./tests/tests.py --cov-report=xml - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 with: fail_ci_if_error: true \ No newline at end of file