We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dee9225 commit 9d71804Copy full SHA for 9d71804
.github/workflows/deploy.yml
@@ -15,23 +15,14 @@ jobs:
15
runs-on: ubuntu-latest
16
steps:
17
- name: Checkout code
18
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
19
- name: Setup Ruby
20
uses: ruby/setup-ruby@v1
21
with:
22
ruby-version: '3.0.2'
23
- - name: Enable bundler cache
24
- uses: actions/cache@v2
25
- with:
26
- path: vendor/bundle
27
- key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
28
- restore-keys: |
29
- ${{ runner.os }}-gems-
+ bundler-cache: true
30
- name: Install deps
31
run: |
32
- gem install bundler
33
- bundle config path vendor/bundle
34
- bundle install --jobs 4 --retry 3
35
npm install -g mermaid.cli
36
- name: Setup deploy options
37
id: setup
0 commit comments