Skip to content

Commit 4624aee

Browse files
authored
Merge pull request #379 from h3poteto/go/1.18
Update go version to 1.18
2 parents c7b2ec0 + f6f1f10 commit 4624aee

File tree

5 files changed

+27
-440
lines changed

5 files changed

+27
-440
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fetch-depth: 1
1515
- uses: actions/setup-go@v3
1616
with:
17-
go-version: '^1.15.0'
17+
go-version-file: "go.mod"
1818
- name: Make all
1919
run: make all VERSION=${GITHUB_REF##*/}
2020
- name: Upload release binaries

.github/workflows/reviewdog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99

1010
steps:
1111
- uses: actions/checkout@master
12-
- uses: actions/setup-go@v2
12+
- uses: actions/setup-go@v3
1313
with:
14-
go-version: '^1.16.0'
14+
go-version-file: "go.mod"
1515
- uses: reviewdog/action-setup@v1
1616
- name: Install golangci-lint
1717
run: |

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
go-version: [1.15.x, 1.16.x]
16+
go-version: [1.17.x, 1.18.x, 1.19.x]
1717

1818
steps:
1919
- uses: actions/setup-go@v3

go.mod

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/h3poteto/ecs-task
22

3-
go 1.15
3+
go 1.18
44

55
require (
66
github.com/aws/aws-sdk-go v1.44.14
@@ -10,3 +10,24 @@ require (
1010
github.com/spf13/cobra v1.4.0
1111
github.com/spf13/viper v1.12.0
1212
)
13+
14+
require (
15+
github.com/fsnotify/fsnotify v1.5.4 // indirect
16+
github.com/hashicorp/hcl v1.0.0 // indirect
17+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
18+
github.com/jmespath/go-jmespath v0.4.0 // indirect
19+
github.com/magiconair/properties v1.8.6 // indirect
20+
github.com/mitchellh/mapstructure v1.5.0 // indirect
21+
github.com/pelletier/go-toml v1.9.5 // indirect
22+
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
23+
github.com/spf13/afero v1.8.2 // indirect
24+
github.com/spf13/cast v1.5.0 // indirect
25+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
26+
github.com/spf13/pflag v1.0.5 // indirect
27+
github.com/subosito/gotenv v1.3.0 // indirect
28+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
29+
golang.org/x/text v0.3.7 // indirect
30+
gopkg.in/ini.v1 v1.66.4 // indirect
31+
gopkg.in/yaml.v2 v2.4.0 // indirect
32+
gopkg.in/yaml.v3 v3.0.0 // indirect
33+
)

0 commit comments

Comments
 (0)