diff --git a/.github/composite_actions/run_xcodebuild_test/action.yml b/.github/composite_actions/run_xcodebuild_test/action.yml index 1d96941d..bb93371c 100644 --- a/.github/composite_actions/run_xcodebuild_test/action.yml +++ b/.github/composite_actions/run_xcodebuild_test/action.yml @@ -5,6 +5,8 @@ inputs: scheme: required: true type: string + token: + required: true project_path: required: false type: string @@ -69,6 +71,6 @@ runs: - name: Upload Report if: ${{ inputs.generate_coverage == 'true' }} - uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 + uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed # v4.3.0 with: - verbose: true \ No newline at end of file + token: ${{ inputs.token }} \ No newline at end of file diff --git a/.github/workflows/liveness_unit_tests.yml b/.github/workflows/liveness_unit_tests.yml index 0a3aad72..4d082429 100644 --- a/.github/workflows/liveness_unit_tests.yml +++ b/.github/workflows/liveness_unit_tests.yml @@ -26,5 +26,6 @@ jobs: uses: ./.github/composite_actions/run_xcodebuild_test with: scheme: FaceLiveness + token: ${{ secrets.CODECOV_TOKEN }} destination: 'platform=iOS Simulator,name=iPhone 14,OS=latest' generate_coverage: true \ No newline at end of file