File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -17,17 +17,23 @@ jobs:
17
17
go : [ '1.21.x', '1.20.x', '1.19.x' ]
18
18
steps :
19
19
- name : Install Go ${{ matrix.go }}
20
- uses : actions/setup-go@v2
20
+ uses : actions/setup-go@v4
21
21
with :
22
22
go-version : ${{ matrix.go }}
23
23
- name : Checkout
24
- uses : actions/checkout@v2
24
+ uses : actions/checkout@v4
25
25
- name : Cache Modules
26
- uses : actions/cache@v2
26
+ uses : actions/cache@v4
27
27
with :
28
28
path : ~/go/pkg/mod
29
29
key : ${{ runner.os }}-go-v1-${{ hashFiles('**/go.sum') }}
30
30
restore-keys : |
31
31
${{ runner.os }}-go-
32
32
- name : Run tests
33
33
run : go test -v ./...
34
+
35
+ release :
36
+ needs : test
37
+ if : github.ref == 'refs/heads/master'
38
+ uses : upfluence/actions/.github/workflows/lib-any-release.yml@master
39
+ secrets : inherit
Original file line number Diff line number Diff line change 8
8
timeout-minutes : 30
9
9
steps :
10
10
- name : Install Go
11
- uses : actions/setup-go@v2
11
+ uses : actions/setup-go@v4
12
12
with :
13
- go-version : 1.16 .x
13
+ go-version : 1.21 .x
14
14
- name : Check out code
15
- uses : actions/checkout@v1
15
+ uses : actions/checkout@v4
16
16
- name : golanci-lint
17
17
uses : upfluence/action-golangci-lint@master
18
18
with :
You can’t perform that action at this time.
0 commit comments