From 53b8ad5658df5514046d9931d223b35dee10dc7a Mon Sep 17 00:00:00 2001 From: Igor Malinovskiy Date: Thu, 22 Aug 2024 15:16:55 +0200 Subject: [PATCH] Fix codecov upload (#3933) * Try to fix codecov upload * Add token --- .github/workflows/integration.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 5b78b3124b..f294af7101 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -55,6 +55,8 @@ jobs: env: JVM_OPTS: -Xmx3200m TERM: dumb - - name: Codecov - run: | - bash <(curl -s https://codecov.io/bash) + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4 + with: + fail_ci_if_error: false + token: ${{ secrets.CODECOV_TOKEN }}