.github/workflows/main.yaml in finapps-5.0.41 vs .github/workflows/main.yaml in finapps-5.0.43

- old
+ new

@@ -16,19 +16,19 @@ - name: Use Ruby 2.6 uses: actions/setup-ruby@v1 with: ruby-version: '2.6' - - uses: actions/cache@v1 + - uses: actions/cache@v2 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems- - name: Install gems run: | - gem install bundler + gem install -N bundler bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Run rubocop run: bundle exec rubocop