From d012fbd12c4b8bd27f78ddc5804eb88135f66384 Mon Sep 17 00:00:00 2001 From: Alexey Semashkevich Date: Wed, 16 Nov 2022 11:03:17 +0100 Subject: [PATCH] Update github actions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1521d82..3a58ec0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,12 +42,12 @@ jobs: - name: Set up Python id: setup-python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python_version }} - name: Pip, Pre-commit & Poetry caches - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.cache/ @@ -68,7 +68,7 @@ jobs: PGPASSWORD: postgres - name: Upload coverage to Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v2 if: ${{ matrix.script == 'tests' }} with: token: ${{ secrets.CODECOV_TOKEN }}