diff --git a/.github/actions/fsat-setup/action.yaml b/.github/actions/fsat-setup/action.yaml index 2cf6cea4..0ea48959 100644 --- a/.github/actions/fsat-setup/action.yaml +++ b/.github/actions/fsat-setup/action.yaml @@ -4,9 +4,6 @@ inputs: node-version: description: Version of node default: 16.x - fabric-version: - description: Version of Fabric - default: 2.4.7 just-version: description: Just Version default: 1.2.0 @@ -45,5 +42,5 @@ runs: shell: bash working-directory: full-stack-asset-transfer-guide run: | - curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh | bash -s -- -f ${{ inputs.fabric-version }} binary + curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh | bash -s -- binary echo ${PWD}/bin >> $GITHUB_PATH diff --git a/.github/actions/test-network-setup/action.yaml b/.github/actions/test-network-setup/action.yaml index d1084020..ed6587c6 100644 --- a/.github/actions/test-network-setup/action.yaml +++ b/.github/actions/test-network-setup/action.yaml @@ -10,9 +10,6 @@ inputs: java-version: description: Version of JDK default: 11.x - fabric-version: - description: Version of Fabric - default: 2.4.7 runs: using: "composite" @@ -38,7 +35,7 @@ runs: - name: Install fabric CLI shell: bash run: | - curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh | bash -s -- -f ${{ inputs.fabric-version }} binary + curl -sSL https://raw.githubusercontent.com/hyperledger/fabric/main/scripts/install-fabric.sh | bash -s -- binary echo ${PWD}/bin >> $GITHUB_PATH - name: Pull Fabric Docker Images