Skip to content

Commit 377df04

Browse files
committed
use Go 1.18
1 parent c836d1c commit 377df04

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.github/workflows/workflow.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ jobs:
88
- uses: actions/checkout@master
99

1010
- name: run tests for library
11-
uses: cedrickring/golang-action@1.6.0
11+
uses: actions/setup-go@v2
12+
with:
13+
go-version: 1.18
14+
stable: false
1215

1316
- name: run tests for cli
14-
uses: cedrickring/golang-action@1.6.0
17+
uses: actions/setup-go@v2
18+
with:
19+
go-version: 1.18
20+
stable: false
1521
env:
1622
PROJECT_PATH: "./cli/synocrypto"
1723
CI: "true"

cli/synocrypto/go.mod

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

3-
go 1.16
3+
go 1.18
44

55
require (
66
github.com/maxlaverse/synocrypto v0.0.0-20210411154523-101d272bbf64

go.mod

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

3-
go 1.17
3+
go 1.18
44

55
require (
66
github.com/pierrec/lz4/v4 v4.1.14

0 commit comments

Comments
 (0)