File tree Expand file tree Collapse file tree 5 files changed +27
-440
lines changed Expand file tree Collapse file tree 5 files changed +27
-440
lines changed Original file line number Diff line number Diff line change 14
14
fetch-depth : 1
15
15
- uses : actions/setup-go@v3
16
16
with :
17
- go-version : ' ^1.15.0 '
17
+ go-version-file : " go.mod "
18
18
- name : Make all
19
19
run : make all VERSION=${GITHUB_REF##*/}
20
20
- name : Upload release binaries
Original file line number Diff line number Diff line change 9
9
10
10
steps :
11
11
- uses : actions/checkout@master
12
- - uses : actions/setup-go@v2
12
+ - uses : actions/setup-go@v3
13
13
with :
14
- go-version : ' ^1.16.0 '
14
+ go-version-file : " go.mod "
15
15
- uses : reviewdog/action-setup@v1
16
16
- name : Install golangci-lint
17
17
run : |
Original file line number Diff line number Diff line change 13
13
14
14
strategy :
15
15
matrix :
16
- go-version : [1.15 .x, 1.16 .x]
16
+ go-version : [1.17 .x, 1.18.x, 1.19 .x]
17
17
18
18
steps :
19
19
- uses : actions/setup-go@v3
Original file line number Diff line number Diff line change 1
1
module github.com/h3poteto/ecs-task
2
2
3
- go 1.15
3
+ go 1.18
4
4
5
5
require (
6
6
github.com/aws/aws-sdk-go v1.44.14
@@ -10,3 +10,24 @@ require (
10
10
github.com/spf13/cobra v1.4.0
11
11
github.com/spf13/viper v1.12.0
12
12
)
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
+ )
You can’t perform that action at this time.
0 commit comments