diff --git a/.github/workflows/tests_gpu_cuda.yml b/.github/workflows/tests_gpu_cuda.yml index a86097b178..c4f21d7ca5 100644 --- a/.github/workflows/tests_gpu_cuda.yml +++ b/.github/workflows/tests_gpu_cuda.yml @@ -1,10 +1,6 @@ name: Testing::Linux::x86_64::LGPU on: workflow_call: - secrets: - codecov_token: - description: The codecov token to use when uploading coverage files - required: true inputs: lightning-version: type: string @@ -347,7 +343,7 @@ jobs: uses: codecov/codecov-action@v4 with: fail_ci_if_error: true - token: ${{ secrets.codecov_token }} + token: ${{ secrets.CODECOV_TOKEN }} upload-to-codecov-linux-cpp: needs: [cpptestswithLGPU] @@ -366,7 +362,7 @@ jobs: uses: codecov/codecov-action@v4 with: fail_ci_if_error: true - token: ${{ secrets.codecov_token }} + token: ${{ secrets.CODECOV_TOKEN }} - name: Cleanup if: always() diff --git a/.github/workflows/tests_linux.yml b/.github/workflows/tests_linux.yml index dd99c8377c..5a48b30bab 100644 --- a/.github/workflows/tests_linux.yml +++ b/.github/workflows/tests_linux.yml @@ -1,10 +1,6 @@ name: Testing (Linux) on: workflow_call: - secrets: - codecov_token: - description: The codecov token to use when uploading coverage files - required: true inputs: lightning-version: type: string @@ -629,7 +625,7 @@ jobs: uses: codecov/codecov-action@v4 with: fail_ci_if_error: true - token: ${{ secrets.codecov_token }} + token: ${{ secrets.CODECOV_TOKEN }} upload-to-codecov-linux-cpp: needs: [cpptests, cpptestswithOpenBLAS, cpptestswithKokkos] @@ -648,7 +644,7 @@ jobs: uses: codecov/codecov-action@v4 with: fail_ci_if_error: true - token: ${{ secrets.codecov_token }} + token: ${{ secrets.CODECOV_TOKEN }} cpptestsWithMultipleBackends: # Device-specific tests are performed for both. Device-agnostic tests default to LightningQubit. diff --git a/.github/workflows/tests_linux_x86_mpi_gpu.yml b/.github/workflows/tests_linux_x86_mpi_gpu.yml index 5e9db718b9..4d78d4cfff 100644 --- a/.github/workflows/tests_linux_x86_mpi_gpu.yml +++ b/.github/workflows/tests_linux_x86_mpi_gpu.yml @@ -1,10 +1,6 @@ name: Tests::Linux::x86_64::LGPU::MPI on: workflow_call: - secrets: - codecov_token: - description: The codecov token to use when uploading coverage files - required: true inputs: lightning-version: type: string @@ -305,7 +301,7 @@ jobs: with: fail_ci_if_error: true verbose: true - token: ${{ secrets.codecov_token }} + token: ${{ secrets.CODECOV_TOKEN }} - name: Cleanup if: always() @@ -332,7 +328,7 @@ jobs: with: fail_ci_if_error: true verbose: true - token: ${{ secrets.codecov_token }} + token: ${{ secrets.CODECOV_TOKEN }} - name: Cleanup if: always() diff --git a/.github/workflows/tests_windows.yml b/.github/workflows/tests_windows.yml index 3677625c13..45584c944a 100644 --- a/.github/workflows/tests_windows.yml +++ b/.github/workflows/tests_windows.yml @@ -1,10 +1,6 @@ name: Testing (Windows) on: workflow_call: - secrets: - codecov_token: - description: The codecov token to use when uploading coverage files - required: true inputs: lightning-version: type: string @@ -269,4 +265,4 @@ jobs: uses: codecov/codecov-action@v4 with: fail_ci_if_error: true - token: ${{ secrets.codecov_token }} \ No newline at end of file + token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/tests_without_binary.yml b/.github/workflows/tests_without_binary.yml index 27d519a4f6..9cf789d8b9 100644 --- a/.github/workflows/tests_without_binary.yml +++ b/.github/workflows/tests_without_binary.yml @@ -1,10 +1,6 @@ name: Testing without binary on: workflow_call: - secrets: - codecov_token: - description: The codecov token to use when uploading coverage files - required: true inputs: lightning-version: type: string @@ -117,4 +113,4 @@ jobs: with: files: ./main/coverage.xml fail_ci_if_error: true - token: ${{ secrets.codecov_token }} \ No newline at end of file + token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file