From 3349e8cda4041508a84b68aba9d45f166cbfc7a3 Mon Sep 17 00:00:00 2001 From: Makram Kamaleddine Date: Wed, 14 Aug 2024 14:20:24 +0300 Subject: [PATCH] .github/actions: commit sha from local chainlink-ccip --- .github/workflows/ccip-integration-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccip-integration-test.yml b/.github/workflows/ccip-integration-test.yml index 15dc0e3e3..735712c66 100644 --- a/.github/workflows/ccip-integration-test.yml +++ b/.github/workflows/ccip-integration-test.yml @@ -18,7 +18,7 @@ jobs: matrix: go-version: ['1.22.5'] steps: - - name: Checkout the repo + - name: Checkout the chainlink-ccip repo uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Setup Go ${{ matrix.go-version }} uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 @@ -32,10 +32,10 @@ jobs: cd ccip git fetch git checkout ccip-develop - - name: Update chainlink-ccip dependency in ccip + - name: Update the chainlink-ccip dependency in ccip run: | cd ccip - go get github.com/smartcontractkit/chainlink-ccip@${{ github.event.pull_request.head.sha }} + go get github.com/smartcontractkit/chainlink-ccip@$(git -C ../chainlink-ccip rev-parse HEAD) make gomodtidy - name: Setup Postgres uses: ./.github/actions/setup-postgres