X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/1f04b1855d4a261ebd454121d8ff4b9002ef5a15..c14a096788981c94dd6d2681d4e6d2898adef3ca:/.github/workflows/cookstyle.yml diff --git a/.github/workflows/cookstyle.yml b/.github/workflows/cookstyle.yml index bf6c023e4..a9b8b962c 100644 --- a/.github/workflows/cookstyle.yml +++ b/.github/workflows/cookstyle.yml @@ -8,20 +8,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup ruby - uses: actions/setup-ruby@v1.1.1 - - name: Cache gems - uses: actions/cache@v2 + uses: ruby/setup-ruby@v1 with: - path: vendor/bundle - key: bundle-${{ runner.OS }}-${{ hashFiles('Gemfile.lock') }} - restore-keys: | - bundle-${{ runner.OS }}- - - name: Install gems - run: | - gem install bundler - bundle config set deployment true - bundle install --jobs 4 --retry 3 + bundler-cache: true - name: Run cookstyle run: bundle exec cookstyle --format fuubar