From b56fa35a73294dd1274fc4d05e18ee6f103f156b Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 23 Oct 2022 10:29:04 +0200 Subject: [PATCH] Upgrade GitHub Actions * https://github.com/actions/checkout/releases * https://github.com/actions/setup-python/releases * https://github.com/snok/install-poetry/releases * https://github.com/codecov/codecov-action/releases --- .github/workflows/pythonpackage.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index e45bdb92..1b1518e5 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -13,15 +13,15 @@ jobs: run: shell: bash steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} architecture: x64 - name: Install and configure Poetry # TODO: workaround for https://github.com/snok/install-poetry/issues/94 - uses: snok/install-poetry@v1.3.1 + uses: snok/install-poetry@v1.3.3 with: version: 1.1.11 virtualenvs-in-project: true @@ -41,7 +41,7 @@ jobs: source $VENV pytest tests -v --cov=./rich --cov-report=xml:./coverage.xml --cov-report term-missing - name: Upload code coverage - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml