diff --git a/.github/workflows/build-debian.yml b/.github/workflows/build-debian.yml index ed896c065f..fcfd097384 100644 --- a/.github/workflows/build-debian.yml +++ b/.github/workflows/build-debian.yml @@ -183,8 +183,8 @@ jobs: conan_global_conf: ${{ needs.generate-outputs.outputs.conan_global_conf }} conan_remote_name: ${{ inputs.conan_remote_name }} conan_remote_url: ${{ inputs.conan_remote_url }} - conan_remote_username: ${{ inputs.conan_remote_username }} - conan_remote_password: ${{ inputs.conan_remote_password }} + conan_remote_username: ${{ secrets.conan_remote_username }} + conan_remote_password: ${{ secrets.conan_remote_password }} # # Build and test the binary using various configurations. # build-and-test: diff --git a/.github/workflows/build-rhel.yml b/.github/workflows/build-rhel.yml index b9cad6b2f0..c0f8cf2713 100644 --- a/.github/workflows/build-rhel.yml +++ b/.github/workflows/build-rhel.yml @@ -160,8 +160,8 @@ jobs: conan_global_conf: ${{ needs.generate-outputs.outputs.conan_global_conf }} conan_remote_name: ${{ inputs.conan_remote_name }} conan_remote_url: ${{ inputs.conan_remote_url }} - conan_remote_username: ${{ inputs.conan_remote_username }} - conan_remote_password: ${{ inputs.conan_remote_password }} + conan_remote_username: ${{ secrets.conan_remote_username }} + conan_remote_password: ${{ secrets.conan_remote_password }} # # Build and test the binary using various configurations. # build-and-test: