File tree Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Expand file tree Collapse file tree 2 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 16
16
go : ${{ steps.gem_version.outputs.new_version }}
17
17
18
18
steps :
19
- - uses : actions/checkout@v3
19
+ - uses : actions/checkout@v4
20
+ with :
21
+ show-progress : false
20
22
21
23
- uses : ruby/setup-ruby@v1
22
24
with :
@@ -43,12 +45,14 @@ jobs:
43
45
contents : write # needed to be able to tag the release
44
46
runs-on : ubuntu-latest
45
47
needs : pre
46
- if : ${{ needs.pre.outputs.go == 'true' }}
48
+ if : needs.pre.outputs.go == 'true'
47
49
48
50
steps :
49
- - uses : actions/checkout@v3
51
+ - uses : actions/checkout@v4
52
+ with :
53
+ show-progress : false
50
54
51
- - uses : actions/setup-node@v3
55
+ - uses : actions/setup-node@v4
52
56
with :
53
57
node-version-file : ' .nvmrc'
54
58
cache : ' npm'
Original file line number Diff line number Diff line change 1
1
name : Test
2
2
3
- on : [push, pull_request]
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ workflow_dispatch :
4
9
5
10
jobs :
6
11
test :
9
14
10
15
strategy :
11
16
matrix :
12
- ruby : ['2.7 ', '3.2']
17
+ ruby : ['3.1 ', '3.2', '3.3 ']
13
18
14
19
steps :
15
- - uses : actions/checkout@v3
20
+ - uses : actions/checkout@v4
21
+ with :
22
+ show-progress : false
16
23
17
- - uses : actions/setup-node@v3
24
+ - uses : actions/setup-node@v4
18
25
with :
19
26
node-version-file : ' .nvmrc'
20
27
cache : ' npm'
You can’t perform that action at this time.
0 commit comments