From 85f3346ed2361e1d80f9a1955acdec1119e91e17 Mon Sep 17 00:00:00 2001 From: dave-shawley Date: Fri, 28 Jul 2023 09:26:50 -0400 Subject: [PATCH] Update run-tests.yml Update action versions --- .github/workflows/run-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 950e2ff..d765129 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -14,9 +14,9 @@ jobs: matrix: python-version: [3.8, 3.9, 3.11] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -42,7 +42,7 @@ jobs: coverage report coverage xml -o ./coverage.xml - name: Send coverage to codecov.io - uses: codecov/codecov-action@v1.3.2 + uses: codecov/codecov-action@v3.1.4 with: token: ${{secrets.CODECOV_TOKEN}} file: ./coverage.xml @@ -50,7 +50,7 @@ jobs: fail_ci_if_error: true - name: Save coverage report if: ${{ matrix.python-version == '3.9' }} - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: coverage.xml path: ./coverage.xml