From 15035f519993535a658967f3909cb22f4c9089a7 Mon Sep 17 00:00:00 2001 From: Marc Brugger Date: Sat, 15 Oct 2022 22:08:13 +0200 Subject: [PATCH] Use go version from go.mod --- .github/workflows/go.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 859fc91..112f362 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -20,14 +20,14 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.x - uses: actions/setup-go@v3 - with: - go-version: ^1.18 - - name: Check out code into the Go module directory uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version-file: "go.mod" + - name: Test run: make test-ci