From d46c05e1b79084b0b15dbfc525d80082f3811897 Mon Sep 17 00:00:00 2001 From: Bart Thomee <11445373+bthomee@users.noreply.github.com> Date: Sun, 27 Jul 2025 14:44:47 -0400 Subject: [PATCH] Convert reusable workflows back to actions to avoid shortcomings with concurrency --- .github/workflows/build-debian.yml | 4 ++-- .github/workflows/build-rhel.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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: