From 18c3c7a077a509718070b23f2329915e0abd9c8f Mon Sep 17 00:00:00 2001 From: lillian542 <38584660+lillian542@users.noreply.github.com> Date: Wed, 10 Apr 2024 15:59:03 -0400 Subject: [PATCH] Add new codecov token to test workflow (#509) * try to add codecov token to workflow * trigger ci * update test workflow * try this --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e898fe302..a84f2cbda 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -45,8 +45,9 @@ jobs: IBMQX_TOKEN: ${{ secrets.IBMQX_TOKEN_TEST }} - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.codecov_token }} file: ./coverage.xml integration-tests: @@ -84,6 +85,7 @@ jobs: pl-device-test --device=qiskit.aer --tb=short --skip-ops --shots=None --device-kwargs backend=unitary_simulator - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: + token: ${{ secrets.codecov_token }} file: ./coverage.xml