File tree 5 files changed +12
-12
lines changed
5 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 44
44
- name : Set up Go
45
45
uses : actions/setup-go@v3
46
46
with :
47
- go-version : 1.18
47
+ go-version-file : go.mod
48
48
- name : Import GPG key
49
49
uses : crazy-max/ghaction-import-gpg@v5
50
50
id : import_gpg
Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ jobs:
22
22
runs-on : ubuntu-latest
23
23
timeout-minutes : 5
24
24
steps :
25
+ - name : Check out code into the Go module directory
26
+ uses : actions/checkout@v3
27
+
25
28
- name : Set up Go
26
29
uses : actions/setup-go@v3
27
30
with :
28
- go-version : " 1.18 "
31
+ go-version-file : go.mod
29
32
id : go
30
33
31
- - name : Check out code into the Go module directory
32
- uses : actions/checkout@v3
33
-
34
34
- name : Get dependencies
35
35
run : |
36
36
go mod download
@@ -54,15 +54,15 @@ jobs:
54
54
- " 1.1.*"
55
55
- " 1.2.*"
56
56
steps :
57
+ - name : Check out code into the Go module directory
58
+ uses : actions/checkout@v3
59
+
57
60
- name : Set up Go
58
61
uses : actions/setup-go@v3
59
62
with :
60
- go-version : " 1.18 "
63
+ go-version-file : go.mod
61
64
id : go
62
65
63
- - name : Check out code into the Go module directory
64
- uses : actions/checkout@v3
65
-
66
66
- name : Get dependencies
67
67
run : |
68
68
go mod download
Original file line number Diff line number Diff line change 3
3
before :
4
4
hooks :
5
5
# this is just an example and not a requirement for provider building/publishing
6
- - go mod tidy -compat=1.18
6
+ - go mod tidy
7
7
builds :
8
8
- env :
9
9
# goreleaser does not work with CGO, it could also complicate
Original file line number Diff line number Diff line change 13
13
devShells . default = pkgs . mkShell {
14
14
packages = [
15
15
pkgs . delve
16
- pkgs . go_1_18
16
+ pkgs . go_1_19
17
17
pkgs . go-tools
18
18
pkgs . gomodifytags
19
19
pkgs . gopls
Original file line number Diff line number Diff line change 1
1
module github.com/tensor5/terraform-provider-talos
2
2
3
- go 1.18
3
+ go 1.19
4
4
5
5
replace inet.af/tcpproxy => github.com/smira/tcpproxy v0.0.0-20201015133617-de5f7797b95b
6
6
You can’t perform that action at this time.
0 commit comments