Skip to content

Commit

Permalink
Fix extension workflows checkout with submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
Folyd committed Jun 2, 2020
1 parent 1f53a87 commit 453a5c6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/chromium.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
ref: 'master'
submodules: 'recursive'

- name: Install Jsonnet
run: sudo snap install jsonnet
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/firefox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
ref: 'master'
submodules: 'recursive'

- name: Install Jsonnet
run: sudo snap install jsonnet
Expand Down

0 comments on commit 453a5c6

Please sign in to comment.