From 992d8e60df95f11ac73143648a241b15b6a42118 Mon Sep 17 00:00:00 2001 From: ecrupper Date: Mon, 26 Jun 2023 15:01:45 -0500 Subject: [PATCH] give this a try --- .github/workflows/test.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0474649..facbcb2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: uses: actions/checkout@v3 - name: build for integration test - uses: docker://golang:1.18 + uses: docker://golang:1.20 with: entrypoint: make args: build-static-ci @@ -56,8 +56,7 @@ jobs: gha-publish-test: runs-on: ubuntu-latest - container: - image: golang:1.18 + steps: - name: clone uses: actions/checkout@v3 @@ -65,6 +64,14 @@ jobs: # ensures we fetch tag history for the repository fetch-depth: 0 + - name: install go + uses: actions/setup-go@v4 + with: + # use version from go.mod file + go-version-file: 'go.mod' + cache: true + check-latest: true + - name: build env: GOOS: linux