From 40d1baff6db10b982226380b1c2266fa3e7804f1 Mon Sep 17 00:00:00 2001 From: Tim Davies Date: Sat, 19 Oct 2024 17:41:52 +0100 Subject: [PATCH] Update build github 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 de779c5..7757aee 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.12 + - name: Set up Go 1.23 uses: actions/setup-go@v1 with: - go-version: 1.12 + go-version: 1.23 id: go - name: Check out code into the Go module directory @@ -18,11 +18,7 @@ jobs: - name: Get dependencies run: | - go get -v -t -d ./... - if [ -f Gopkg.toml ]; then - curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh - dep ensure - fi + go get -v -t ./... - name: Test run: go test ./tests/... -v