From 2eb9739c73e37c2a7fd957c6c6896c96a13d115f Mon Sep 17 00:00:00 2001 From: appel_c Date: Wed, 24 Sep 2025 11:37:29 -0500 Subject: [PATCH] fix: adapt paths --- checkout_repositories/action.yml | 9 +++++++-- install_apt_packages/action.yml | 9 +++++++-- install_python_env/action.yml | 9 +++++++-- run_pytest_for_plugin/action.yml | 9 +++++++-- 4 files changed, 28 insertions(+), 8 deletions(-) diff --git a/checkout_repositories/action.yml b/checkout_repositories/action.yml index 79b1cc1..7123738 100644 --- a/checkout_repositories/action.yml +++ b/checkout_repositories/action.yml @@ -25,12 +25,17 @@ inputs: runs: using: "composite" steps: + - uses: actions/checkout@v4 + with: + repository: bec/bec_shared_actions + ref: main + path: bec_shared_actions - name: Checkout BEC Plugin Repository shell: bash run: | echo " --- Current Directory: $(pwd) --- " - chmod +x ./run_ci.sh - ./run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" \ + chmod +x ./checkout_repositories/run_ci.sh + ./checkout_repositories/run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" \ "${{ inputs.BEC_PLUGIN_REPO_BRANCH }}" \ "${{ inputs.BEC_CORE_BRANCH }}" \ "${{ inputs.BEC_WIDGETS_BRANCH }}" \ diff --git a/install_apt_packages/action.yml b/install_apt_packages/action.yml index dabe0fc..6420c20 100644 --- a/install_apt_packages/action.yml +++ b/install_apt_packages/action.yml @@ -9,8 +9,13 @@ inputs: runs: using: "composite" steps: + - uses: actions/checkout@v4 + with: + repository: bec/bec_shared_actions + ref: main + path: bec_shared_actions - name: Install APT Packages shell: bash run: | - chmod +x ./run_ci.sh - ./run_ci.sh "${{ inputs.APT_PACKAGES }}" \ \ No newline at end of file + chmod +x ./install_apt_packages/run_ci.sh + ./install_apt_packages/run_ci.sh "${{ inputs.APT_PACKAGES }}" \ \ No newline at end of file diff --git a/install_python_env/action.yml b/install_python_env/action.yml index 16e108b..f91dff7 100644 --- a/install_python_env/action.yml +++ b/install_python_env/action.yml @@ -13,6 +13,11 @@ inputs: runs: using: "composite" steps: + - uses: actions/checkout@v4 + with: + repository: bec/bec_shared_actions + ref: main + path: bec_shared_actions - name: Setup Python uses: actions/setup-python@v4 with: @@ -20,5 +25,5 @@ runs: - name: Install Python Environment shell: bash run: | - chmod +x ./run_ci.sh - ./run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" + chmod +x ./install_python_env/run_ci.sh + ./install_python_env/run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" diff --git a/run_pytest_for_plugin/action.yml b/run_pytest_for_plugin/action.yml index 0ee30ce..78c20c1 100644 --- a/run_pytest_for_plugin/action.yml +++ b/run_pytest_for_plugin/action.yml @@ -9,8 +9,13 @@ inputs: runs: using: "composite" steps: + - uses: actions/checkout@v4 + with: + repository: bec/bec_shared_actions + ref: main + path: bec_shared_actions - name: Run Pytest for Plugin shell: bash run: | - chmod +x ./run_ci.sh - ./run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" \ No newline at end of file + chmod +x ./run_pytest_for_plugin/run_ci.sh + ./run_pytest_for_plugin/run_ci.sh "${{ inputs.PLUGIN_REPO_NAME }}" \ No newline at end of file