File tree 1 file changed +7
-12
lines changed
1 file changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ jobs:
114
114
CI_ASSET : ${{ matrix.asset }}
115
115
JRUBY_OPTS : --debug
116
116
steps :
117
- - uses : actions/checkout@v3
117
+ - uses : actions/checkout@v4
118
118
- name : Set up Ruby
119
119
uses : ruby/setup-ruby@v1
120
120
with :
@@ -125,7 +125,7 @@ jobs:
125
125
MAKEFLAGS : make --jobs 4
126
126
BUNDLE_WITHOUT : development
127
127
- name : Set up Node
128
- uses : actions/setup-node@v3
128
+ uses : actions/setup-node@v4
129
129
with :
130
130
node-version : " 18"
131
131
- name : Setup application
@@ -172,9 +172,9 @@ jobs:
172
172
name : Prettier
173
173
runs-on : ubuntu-latest
174
174
steps :
175
- - uses : actions/checkout@v3
175
+ - uses : actions/checkout@v4
176
176
- name : Set up Node.js
177
- uses : actions/setup-node@v3
177
+ uses : actions/setup-node@v4
178
178
- name : Install dependencies
179
179
run : yarn install
180
180
- name : Run check
@@ -184,18 +184,13 @@ jobs:
184
184
name : RuboCop
185
185
runs-on : ubuntu-latest
186
186
steps :
187
- - uses : actions/checkout@v3
187
+ - uses : actions/checkout@v4
188
188
- name : Set up Ruby
189
189
uses : ruby/setup-ruby@v1
190
190
with :
191
191
ruby-version : " 3.2"
192
- - name : Cache gems
193
- uses : actions/cache@v3
194
- with :
195
- path : vendor/bundle
196
- key : ${{ runner.os }}-gems-${{ matrix.ruby }}-${{ hashFiles('Gemfile') }}
197
- restore-keys : |
198
- ${{ runner.os }}-gems-${{ matrix.ruby }}-
192
+ bundler-cache : true
193
+ cache-version : gems-${{ hashFiles('Gemfile') }}
199
194
- name : Install dependencies
200
195
run : bundle install --without development --jobs=3 --retry=3 --path=vendor/bundle
201
196
- name : Run check
You can’t perform that action at this time.
0 commit comments