Closed yous closed 4 years ago
From actions/cache's examples for Bundler:
- uses: actions/cache@v1 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems-
- name: Bundle install run: | bundle config path vendor/bundle bundle install --jobs 4 --retry 3
Thanks @yous, this improvement just got merged through #17
Nice! Thanks for the notice.
From actions/cache's examples for Bundler: