Skip to content

Commit

Permalink
🐛 Fixes Submodule Checkout During Release & Pull Request Checks
Browse files Browse the repository at this point in the history
  • Loading branch information
brucificus committed Dec 15, 2023
1 parent 06a10fe commit 17ed95c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/pull_request_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Checkout submodules
uses: textbook/[email protected]
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up JDK 1.8
uses: actions/setup-java@v1
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Checkout submodules
uses: textbook/[email protected]
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Set up JDK 1.8
uses: actions/setup-java@v1
Expand Down

0 comments on commit 17ed95c

Please sign in to comment.