diff --git a/.github/actions/features_parse/action.yml b/.github/actions/features_parse/action.yml index 5aabaa1b..9d8c8c66 100644 --- a/.github/actions/features_parse/action.yml +++ b/.github/actions/features_parse/action.yml @@ -11,7 +11,7 @@ outputs: runs: using: composite steps: - - uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@0.10.5 + - uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@hotfix-disabled-python-cache-in-setup-action - id: result shell: bash run: | diff --git a/.github/actions/flavors_parse/action.yml b/.github/actions/flavors_parse/action.yml index b0d2a9d7..2f557551 100644 --- a/.github/actions/flavors_parse/action.yml +++ b/.github/actions/flavors_parse/action.yml @@ -13,7 +13,7 @@ outputs: runs: using: composite steps: - - uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@0.10.5 + - uses: gardenlinux/python-gardenlinux-lib/.github/actions/setup@hotfix-disabled-python-cache-in-setup-action - id: matrix shell: bash run: | diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 50b90361..bffd59d0 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -23,20 +23,20 @@ outputs: runs: using: composite steps: - - name: Evaluate Python environment - id: env-check - shell: bash - run: | - # Determine cache type based on available lockfile - if [ -f poetry.lock ]; then - echo "package_tool=poetry" >> $GITHUB_OUTPUT - elif [ -f requirements.txt ]; then - echo "package_tool=pip" >> $GITHUB_OUTPUT - else - # no lockfile present: create one and use pip caching - echo "gardenlinux @ git+https://github.com/gardenlinux/python-gardenlinux-lib.git@${{ inputs.version }}" | tee -a requirements.txt - echo "package_tool=pip" >> $GITHUB_OUTPUT - fi + # - name: Evaluate Python environment + # id: env-check + # shell: bash + # run: | + # # Determine cache type based on available lockfile + # if [ -f poetry.lock ]; then + # echo "package_tool=poetry" >> $GITHUB_OUTPUT + # elif [ -f requirements.txt ]; then + # echo "package_tool=pip" >> $GITHUB_OUTPUT + # else + # # no lockfile present: create one and use pip caching + # echo "gardenlinux @ git+https://github.com/gardenlinux/python-gardenlinux-lib.git@${{ inputs.version }}" | tee -a requirements.txt + # echo "package_tool=pip" >> $GITHUB_OUTPUT + # fi - name: Install Poetry if: steps.env-check.outputs.package_tool == 'poetry' @@ -46,7 +46,7 @@ runs: uses: actions/setup-python@v5 with: python-version: ${{ inputs.python_version }} - cache: ${{ steps.env-check.outputs.package_tool }} + # cache: ${{ steps.env-check.outputs.package_tool }} - name: Install GardenLinux Python library shell: bash