diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55588a0d0..b1231f0ef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,7 +113,7 @@ jobs: env: URSIM_VERSION: ${{matrix.env.URSIM_VERSION}} - name: Upload test results to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: fail_ci_if_error: true files: build/junit.xml @@ -127,7 +127,7 @@ jobs: - name: gcovr run: cd build && gcovr -r .. --xml coverage.xml --gcov-ignore-parse-errors negative_hits.warn_once_per_file --exclude "../3rdparty" - name: Upload coverage reports to Codecov with GitHub Action - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: fail_ci_if_error: true files: build/coverage.xml @@ -287,7 +287,7 @@ jobs: - name: gcovr run: cd build && gcovr -r .. --xml coverage.xml --gcov-ignore-parse-errors negative_hits.warn_once_per_file --exclude "../3rdparty" - name: Upload coverage reports to Codecov with GitHub Action - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: fail_ci_if_error: true files: build/coverage.xml @@ -314,7 +314,7 @@ jobs: BATS_LIB_PATH: ${{ steps.setup-bats.outputs.lib-path }} run: bundle exec bashcov --skip-uncovered bats tests/test_start_ursim.bats - name: Upload coverage reports to Codecov with GitHub Action - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: fail_ci_if_error: true flags: start_ursim diff --git a/.github/workflows/test_python_scripts.yml b/.github/workflows/test_python_scripts.yml index 38911bdfe..149cd78ae 100644 --- a/.github/workflows/test_python_scripts.yml +++ b/.github/workflows/test_python_scripts.yml @@ -20,7 +20,7 @@ jobs: - name: Run tests run: python -m pytest scripts/*.py --cov=scripts --cov-report=xml - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v7 with: fail_ci_if_error: true files: coverage.xml