File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,13 @@ jobs:
25
25
26
26
steps :
27
27
- name : Checkout repository
28
- uses : actions/checkout@v2
28
+ uses : actions/checkout@v3
29
29
30
30
# Initializes the CodeQL tools for scanning.
31
31
- name : Initialize CodeQL
32
- uses : github/codeql-action/init@v1
32
+ uses : github/codeql-action/init@v2
33
33
with :
34
34
languages : ${{ matrix.language }}
35
35
36
36
- name : Perform CodeQL Analysis
37
- uses : github/codeql-action/analyze@v1
37
+ uses : github/codeql-action/analyze@v2
Original file line number Diff line number Diff line change 90
90
CI_ASSET : ${{ matrix.asset }}
91
91
JRUBY_OPTS : --debug
92
92
steps :
93
- - uses : actions/checkout@v2
93
+ - uses : actions/checkout@v3
94
94
- name : Set up Ruby
95
95
uses : ruby/setup-ruby@v1
96
96
with :
@@ -101,7 +101,7 @@ jobs:
101
101
MAKE : make --jobs 4
102
102
BUNDLE_WITHOUT : development
103
103
- name : Set up Node
104
- uses : actions/setup-node@v2
104
+ uses : actions/setup-node@v3
105
105
with :
106
106
node-version : " 14"
107
107
- name : Setup application
@@ -147,9 +147,9 @@ jobs:
147
147
name : Prettier
148
148
runs-on : ubuntu-latest
149
149
steps :
150
- - uses : actions/checkout@v2
150
+ - uses : actions/checkout@v3
151
151
- name : Set up Node.js
152
- uses : actions/setup-node@v2
152
+ uses : actions/setup-node@v3
153
153
- name : Install dependencies
154
154
run : yarn install
155
155
- name : Run check
@@ -159,13 +159,13 @@ jobs:
159
159
name : RuboCop
160
160
runs-on : ubuntu-latest
161
161
steps :
162
- - uses : actions/checkout@v2
162
+ - uses : actions/checkout@v3
163
163
- name : Set up Ruby
164
164
uses : ruby/setup-ruby@v1
165
165
with :
166
166
ruby-version : " 3.0"
167
167
- name : Cache gems
168
- uses : actions/cache@v2
168
+ uses : actions/cache@v3
169
169
with :
170
170
path : vendor/bundle
171
171
key : ${{ runner.os }}-gems-${{ matrix.ruby }}-${{ hashFiles('Gemfile') }}
You can’t perform that action at this time.
0 commit comments