From 9051ffddf70122a4abee6f268e461b103f512502 Mon Sep 17 00:00:00 2001 From: Bernhard Froehlich Date: Fri, 16 Jun 2023 06:39:24 +0000 Subject: [PATCH] Fix Go CI action --- .github/workflows/go.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index a8d54e5..694d535 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -6,19 +6,10 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - - name: Set up Go 1.20 - uses: actions/setup-go@v4 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 with: - go-version: 1.20 - id: go - - - name: Check out code into the Go module directory - uses: actions/checkout@v3 - - - name: Get dependencies - run: | - go get -v -t -d ./... + go-version: 'stable' - name: Build run: go build -v .