diff --git a/.github/actions/install_python_dependencies/action.yml b/.github/actions/install_kedro_and_python_dependencies/action.yml similarity index 100% rename from .github/actions/install_python_dependencies/action.yml rename to .github/actions/install_kedro_and_python_dependencies/action.yml diff --git a/.github/actions/setup_tests/action.yml b/.github/actions/setup_tests/action.yml index cfa9795806..7135242926 100644 --- a/.github/actions/setup_tests/action.yml +++ b/.github/actions/setup_tests/action.yml @@ -1,5 +1,5 @@ name: Setup Tests -description: Sets up the testing environment by checking out the code, setting up Python and Node.js, caching Python packages, installing Kedro and other Python dependencies, and building the React application. +description: Sets up the testing environment by setting up Python and Node.js, caching Python packages, installing Kedro and other Python dependencies, and building the React application. inputs: os: @@ -34,7 +34,7 @@ runs: key: ${{inputs.os}}-python-${{inputs.python-version}} - name: Install Kedro and other Python Dependencies - uses: "./.github/actions/install_python_dependencies" + uses: "./.github/actions/install_kedro_and_python_dependencies" - name: Setup Node.js and Install Dependencies uses: "./.github/actions/install_node_dependencies" diff --git a/.github/workflows/javascript-lint-and-tests.yml b/.github/workflows/javascript-lint-and-tests.yml index 4f151f81d4..7077e7568c 100644 --- a/.github/workflows/javascript-lint-and-tests.yml +++ b/.github/workflows/javascript-lint-and-tests.yml @@ -31,7 +31,7 @@ jobs: key: ubuntu-latest-python-3.9 - name: Install Kedro and other Python Dependencies - uses: "./.github/actions/install_python_dependencies" + uses: "./.github/actions/install_kedro_and_python_dependencies" - name: Setup Node.js and Install Dependencies uses: "./.github/actions/install_node_dependencies" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3bfe309faa..02489d36dd 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -30,7 +30,7 @@ jobs: key: ${{inputs.os}}-python-${{inputs.python-version}} - name: Install Kedro and other Python Dependencies - uses: "./.github/actions/install_python_dependencies" + uses: "./.github/actions/install_kedro_and_python_dependencies" - name: Run secret scan run: make secret-scan