From 8a9d6e0bd84f3a61cd82476730ff0fbdd2c1ea3d Mon Sep 17 00:00:00 2001 From: Valery Piashchynski Date: Wed, 26 Jun 2024 18:49:25 +0200 Subject: [PATCH] fix(ci): add setup-go Signed-off-by: Valery Piashchynski --- .github/workflows/linux.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 6e00101..bdd3a6f 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -16,6 +16,11 @@ jobs: - name: Check out code uses: actions/checkout@v4 + - name: Set up Go ${{ matrix.go }} + uses: actions/setup-go@v5 # action page: + with: + go-version: ${{ matrix.go }} + - name: Init Go modules Cache # Docs: uses: actions/cache@v4 with: