diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0a1cda3f1..a4c488000 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,13 +18,13 @@ jobs: PY_COLORS: 1 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Poetry run: pipx install poetry - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: poetry @@ -46,9 +46,8 @@ jobs: - name: Upload code coverage if: matrix.python-version == '3.8' && matrix.platform == 'ubuntu-latest' - run: | - pip install codecov || true - codecov || true + continue-on-error: true + run: codecov - name: Test latest Python version with tox and mypy if: matrix.python-version == '3.x' @@ -66,13 +65,13 @@ jobs: PY_COLORS: 1 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Poetry run: pipx install poetry - name: Set up Python 3.x - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: "3.x" cache: poetry @@ -90,13 +89,13 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Poetry run: pipx install poetry - name: Set up Python 3.x - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: "3.x" cache: poetry diff --git a/.github/workflows/integration_test.yaml b/.github/workflows/integration_test.yaml index 93077e39f..d19d267a3 100644 --- a/.github/workflows/integration_test.yaml +++ b/.github/workflows/integration_test.yaml @@ -18,7 +18,7 @@ jobs: with: python-version: 3.9-dev - - name: Install base dependencies + - name: Install dependencies run: | pip install poetry poetry install