diff --git a/action.yml b/action.yml index aad9e27..516356b 100644 --- a/action.yml +++ b/action.yml @@ -51,20 +51,9 @@ inputs: runs: using: composite steps: - - name: Setup Git and Pip - shell: bash - run: | - if ! [ -x "$(command -v git)" ]; then - sudo apt-get update - sudo apt-get install git -y - sudo apt-get install python3-pip -y - else - echo "Git already installed..." - fi - - name: Setup Golang if: ${{ inputs.go == 'true' || inputs.enable-all == 'true'}} - uses: magnetikonline/action-golang-cache@main + uses: Drafteame/go-cache-action@main with: go-version: ${{ inputs.go-version }} @@ -76,7 +65,6 @@ runs: working-directory: ${{ inputs.node-working-directory }} cache-key-suffix: ${{ inputs.node-cache-key-suffix }} - # POC - name: Install poetry if: ${{ inputs.python == 'true' || inputs.enable-all == 'true'}} uses: abatilo/actions-poetry@v2 @@ -85,7 +73,7 @@ runs: - if: ${{ inputs.python == 'true' || inputs.enable-all == 'true'}} - uses: actions/setup-python@v5 + uses: useblacksmith/setup-python@v6 with: python-version: ${{ inputs.python-version }} cache: 'poetry'