From af71464894a93a17df9ca6a4a2890b043188c0ea Mon Sep 17 00:00:00 2001 From: Alexey Semashkevich Date: Wed, 16 Nov 2022 10:33:12 +0100 Subject: [PATCH] Update github actions --- .github/workflows/ci.yml | 8 ++++---- .pre-commit-config.yaml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1521d82..c62ba51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,16 +38,16 @@ jobs: - 5432:5432 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - 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@v3 if: ${{ matrix.script == 'tests' }} with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 276d883..8229145 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,7 +10,7 @@ repos: - id: check-added-large-files - repo: https://github.com/psf/black - rev: "22.1.0" + rev: "22.10.0" hooks: - id: black