diff --git a/chainlink-testing-framework/build-image/action.yml b/chainlink-testing-framework/build-image/action.yml index a7a7f09..ca6f48c 100644 --- a/chainlink-testing-framework/build-image/action.yml +++ b/chainlink-testing-framework/build-image/action.yml @@ -31,6 +31,9 @@ inputs: dep_common_sha: required: false description: chainlink-common commit or branch + dep_evm_sha: + required: false + description: chainlink-evm commit or branch QA_AWS_REGION: required: true description: The AWS region to use @@ -94,14 +97,15 @@ runs: if: ${{ inputs.dep_common_sha }} shell: bash run: go get github.com/smartcontractkit/chainlink-common@${{ inputs.dep_common_sha }} + - name: Replace chainlink-evm deps + if: ${{ inputs.dep_evm_sha }} + shell: bash + run: go get github.com/smartcontractkit/chainlink-evm@${{ inputs.dep_evm_sha }} - name: Tidy shell: bash env: GOPRIVATE: ${{ inputs.GOPRIVATE }} run: go mod tidy - - name: Env vars - shell: bash - run: env - name: Cat go.mod shell: bash run: cat go.mod