]> git.openstreetmap.org Git - chef.git/blobdiff - .github/workflows/cookstyle.yml
Bump actions/checkout from 2.3.4 to 2.3.5
[chef.git] / .github / workflows / cookstyle.yml
index c82391de1f42e656dce9586a948139227569d313..f1f0d3c0bfa5981fbc8cf5e81cb54dbe67f110ea 100644 (file)
@@ -8,13 +8,11 @@ jobs:
     runs-on: ubuntu-latest
     steps:
     - name: Check out code
-      uses: actions/checkout@v1
-      with:
-        fetch-depth: 1
+      uses: actions/checkout@v2.3.5
     - name: Setup ruby
-      uses: actions/setup-ruby@v1
+      uses: actions/setup-ruby@v1.1.3
     - name: Cache gems
-      uses: actions/cache@v1
+      uses: actions/cache@v2.1.6
       with:
         path: vendor/bundle
         key: bundle-${{ runner.OS }}-${{ hashFiles('Gemfile.lock') }}
@@ -22,7 +20,8 @@ jobs:
           bundle-${{ runner.OS }}-
     - name: Install gems
       run: |
-        gem install bundler --version "~> 1.17"
-        bundle install --jobs 4 --retry 3 --deployment
+        gem install bundler
+        bundle config set deployment true
+        bundle install --jobs 4 --retry 3
     - name: Run cookstyle
       run: bundle exec cookstyle --format fuubar