From 258764811b51041970e09e789fbe541ca4ec18b1 Mon Sep 17 00:00:00 2001 From: Marcin Raba Date: Tue, 13 Feb 2024 15:32:16 +0100 Subject: [PATCH] mraba/gh-actions-updates: refresh build test actions versions --- .github/workflows/build_test.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index eae3afe3..c2b7e589 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -24,9 +24,9 @@ jobs: name: Check linting runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.8' - name: Display Python version @@ -61,9 +61,9 @@ jobs: python-version: ["3.8"] cloud-provider: [aws, azure, gcp] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Display Python version @@ -90,7 +90,7 @@ jobs: - name: Combine coverages run: python -m tox -e coverage --skip-missing-interpreters false shell: bash - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: coverage_${{ matrix.os.download_name }}-${{ matrix.python-version }}-${{ matrix.cloud-provider }} path: | @@ -103,12 +103,12 @@ jobs: needs: [test] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/download-artifact@v2 + - uses: actions/checkout@v4 + - uses: actions/download-artifact@v3 with: path: artifacts - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.8' - name: Display Python version @@ -132,15 +132,15 @@ jobs: - name: Combine coverages run: python -m tox -e coverage - name: Publish html coverage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: overall_cov_html path: .tox/htmlcov - name: Publish xml coverage - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: overall_cov_xml path: .tox/coverage.xml - - uses: codecov/codecov-action@v1 + - uses: codecov/codecov-action@v4 with: file: .tox/coverage.xml