File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 34
34
35
35
steps :
36
36
- name : Checkout repository
37
- uses : actions/checkout@v2
37
+ uses : actions/checkout@v3
38
38
39
39
- name : Install licensed
40
40
uses : jonabc/setup-licensed@v1
43
43
version : 3.x
44
44
45
45
- name : Install Go
46
- uses : actions/setup-go@v2
46
+ uses : actions/setup-go@v3
47
47
with :
48
48
go-version : ${{ env.GO_VERSION }}
49
49
80
80
81
81
steps :
82
82
- name : Checkout repository
83
- uses : actions/checkout@v2
83
+ uses : actions/checkout@v3
84
84
85
85
- name : Install licensed
86
86
uses : jonabc/setup-licensed@v1
89
89
version : 3.x
90
90
91
91
- name : Install Go
92
- uses : actions/setup-go@v2
92
+ uses : actions/setup-go@v3
93
93
with :
94
94
go-version : ${{ env.GO_VERSION }}
95
95
Original file line number Diff line number Diff line change 21
21
22
22
steps :
23
23
- name : Checkout repository
24
- uses : actions/checkout@v2
24
+ uses : actions/checkout@v3
25
25
with :
26
26
fetch-depth : 0
27
27
55
55
56
56
steps :
57
57
- name : Checkout repository
58
- uses : actions/checkout@v2
58
+ uses : actions/checkout@v3
59
59
60
60
- name : Download artifacts
61
61
uses : actions/download-artifact@v2
@@ -142,7 +142,7 @@ jobs:
142
142
run : |
143
143
wget -q -P /tmp https://github.com/fsaintjacques/semver-tool/archive/3.0.0.zip
144
144
unzip -p /tmp/3.0.0.zip semver-tool-3.0.0/src/semver >/tmp/semver && chmod +x /tmp/semver
145
- if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "::set-output name= IS_PRE:: true"; fi
145
+ if [[ "$(/tmp/semver get prerel "${GITHUB_REF/refs\/tags\//}")" ]]; then echo "IS_PRE= true" >> $GITHUB_OUTPUT ; fi
146
146
147
147
- name : Create Github Release and upload artifacts
148
148
uses : ncipollo/release-action@v1
Original file line number Diff line number Diff line change 51
51
RESULT="false"
52
52
fi
53
53
54
- echo "::set-output name= result:: $RESULT"
54
+ echo "result= $RESULT" >> $GITHUB_OUTPUT
55
55
56
56
test :
57
57
name : test (${{ matrix.module.path }} - ${{ matrix.operating-system }})
@@ -75,10 +75,10 @@ jobs:
75
75
76
76
steps :
77
77
- name : Checkout repository
78
- uses : actions/checkout@v2
78
+ uses : actions/checkout@v3
79
79
80
80
- name : Install Go
81
- uses : actions/setup-go@v2
81
+ uses : actions/setup-go@v3
82
82
with :
83
83
go-version : ${{ env.GO_VERSION }}
84
84
You can’t perform that action at this time.
0 commit comments