Skip to content

Commit 40d1baf

Browse files
committed
Update build github action
1 parent 30a8c62 commit 40d1baf

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/go.yml

+3-7
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,18 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99

10-
- name: Set up Go 1.12
10+
- name: Set up Go 1.23
1111
uses: actions/setup-go@v1
1212
with:
13-
go-version: 1.12
13+
go-version: 1.23
1414
id: go
1515

1616
- name: Check out code into the Go module directory
1717
uses: actions/checkout@v1
1818

1919
- name: Get dependencies
2020
run: |
21-
go get -v -t -d ./...
22-
if [ -f Gopkg.toml ]; then
23-
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
24-
dep ensure
25-
fi
21+
go get -v -t ./...
2622
2723
- name: Test
2824
run: go test ./tests/... -v

0 commit comments

Comments
 (0)