Skip to content

Commit 2251185

Browse files
committed
Update versions: v1.4.0
1 parent 40b01af commit 2251185

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

.github/workflows/go.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/otiai10/amesh
22

3-
go 1.18
3+
go 1.22
44

55
require (
66
github.com/otiai10/gat v0.0.0-20210414142218-6cc5ed2c158d

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

1818
var (
1919
geo, mask bool

0 commit comments

Comments
 (0)