From 520e98cf4f4e65fc40690d7696469815d3b906d9 Mon Sep 17 00:00:00 2001 From: Paul van Brouwershaven Date: Tue, 14 Mar 2023 14:46:50 +0100 Subject: [PATCH] Update go action --- .github/workflows/go.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0fa450d..0408022 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,16 +14,12 @@ jobs: steps: - name: Set up Go 1.x - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: - go-version: ^1.13 + go-version: ^1.20 - name: Check out code into the Go module directory - uses: actions/checkout@v2 - - - name: Get dependencies - run: | - go get -v -t -d ./... + uses: actions/checkout@v3 - name: Build run: go build -v ./...