Skip to content

Commit

Permalink
.github/workflows/integration-tests-docker.yml: fix updating chainlin…
Browse files Browse the repository at this point in the history
…k-cosmos sha
  • Loading branch information
cfal committed Nov 6, 2023
1 parent 7acebcc commit 8b4688d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/integration-tests-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@ jobs:
ref: ${{ env.CUSTOM_CORE_REF || env.DEFAULT_CORE_REF }}
path: temp/chainlink

- name: Read go version from .tool-versions
id: tool_versions
run: |
go_version=$(grep -E '^golang ' .tool-versions | cut -d' ' -f2)
echo "GO_VERSION=${go_version}" >> "${GITHUB_OUTPUT}"
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ steps.tool_versions.outputs.GO_VERSION }}

- name: Update chainlink-cosmos sha
env:
COMMIT_SHA: ${{ github.event_name == 'push' && github.sha || github.event.pull_request.head.sha }}
Expand Down

0 comments on commit 8b4688d

Please sign in to comment.