]> git.openstreetmap.org Git - chef.git/blobdiff - .github/workflows/cookstyle.yml
github actions: Switch to action ruby/setup-ruby from deprecated actions/setup-ruby
[chef.git] / .github / workflows / cookstyle.yml
index c386adb653433978f8e172b27a60eb5a95b86b25..a9b8b962c1ec2df0c586427da8eca4b8bfe3d869 100644 (file)
@@ -8,20 +8,10 @@ jobs:
     runs-on: ubuntu-latest
     steps:
     - name: Check out code
-      uses: actions/checkout@v2.4.0
+      uses: actions/checkout@v3
     - name: Setup ruby
-      uses: actions/setup-ruby@v1.1.3
-    - name: Cache gems
-      uses: actions/cache@v2.1.6
+      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