From 8c1c0c60291a4db0afea2042e1668cccc8709a99 Mon Sep 17 00:00:00 2001 From: jamesread Date: Thu, 24 Aug 2023 12:20:35 +0100 Subject: [PATCH] cicd: Ensure consistency in setup-go --- .github/workflows/build-snapshot.yml | 2 +- .github/workflows/codestyle.yml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-snapshot.yml b/.github/workflows/build-snapshot.yml index d58001d..0010827 100644 --- a/.github/workflows/build-snapshot.yml +++ b/.github/workflows/build-snapshot.yml @@ -30,7 +30,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v3 with: - go-version: '>=1.18.0' + go-version: '^1.18.0' cache: true - name: grpc diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index dbb48bf..04cb053 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -19,9 +19,10 @@ jobs: uses: actions/checkout@v2 - name: Setup Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: - go-version: '^1.16.0' + go-version: '^1.18.0' + cache: true - name: deps run: make grpc