From dc925368f53175636645ade2d21341ec9b2475d0 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Mon, 6 Mar 2023 18:21:08 +0300 Subject: [PATCH] Update the GitHub Actions to newer versions --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9a81059..00640df 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -48,7 +48,7 @@ jobs: echo -e "\n>>>>> checking $COUNT configs is done <<<<<" - name: Get source code for collecting coverage - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Collect coverage for the basic functionality run: | @@ -157,9 +157,9 @@ jobs: coverage xml -i -o coverage.xml - name: Handle coverage - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 with: - file: ./coverage.xml + files: ./coverage.xml flags: functional_test name: codecov-umbrella fail_ci_if_error: true -- 2.31.1