File tree Expand file tree Collapse file tree 4 files changed +13
-14
lines changed
Expand file tree Collapse file tree 4 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -14,22 +14,21 @@ jobs:
1414 env :
1515 GO111MODULE : " on"
1616 steps :
17- - name : Set up Go 1.18
18- uses : actions/setup-go@v3
17+ - name : Check out code into the Go module directory
18+ uses : actions/checkout@v4
19+ - name : Set up Go
20+ uses : actions/setup-go@v5
1921 with :
20- go-version : 1.18
22+ go-version : 1.22
2123 id : go
22- - name : Check out code into the Go module directory
23- uses : actions/checkout@v3
2424 - name : Get dependencies
2525 run : go get -v -t -d ./...
2626 - name : Build
2727 run : go build -v .
28-
2928 - name : Test
3029 run : go test ./... -v -cover -race -coverprofile=coverage.txt -covermode=atomic
3130 - name : Upload coverage
32- uses : codecov/codecov-action@v1
31+ uses : codecov/codecov-action@v4
3332 with :
3433 file : ./coverage.txt
3534 verbose : true
Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ jobs:
1515 steps :
1616 - name : Set env
1717 run : echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
18- - name : Set up Go 1.18
19- uses : actions/setup-go@v3
20- with :
21- go-version : 1.18
2218 - name : Check out
23- uses : actions/checkout@v3
19+ uses : actions/checkout@v4
2420 with :
2521 fetch-depth : 0
22+ - name : Set up Go
23+ uses : actions/setup-go@v5
24+ with :
25+ go-version : 1.22
2626 - name : Get dependencies
2727 run : go get -v -t -d ./...
2828 - name : Build
Original file line number Diff line number Diff line change 11module github.com/otiai10/amesh
22
3- go 1.18
3+ go 1.22
44
55require (
66 github.com/otiai10/gat v0.0.0-20210414142218-6cc5ed2c158d
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
1313 "github.com/otiai10/gat/render"
1414)
1515
16- const version = "v1.2.3 "
16+ const version = "v1.4.0 "
1717
1818var (
1919 geo , mask bool
You can’t perform that action at this time.
0 commit comments