Skip to content

Commit

Permalink
Bodge for checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJeremyHe committed Aug 27, 2024
1 parent 8d9c7e4 commit ded5276
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,20 @@ jobs:
test-mode: [defaults, race, challenge, stylus, long]

steps:
- name: Remove orbit actions
run: |
rm -rf orbit-actions
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true

- name: Submodule # Bodge for https://github.com/actions/checkout/issues/1855
run: |
git submodule update --init
git submodule foreach --recursive git clean -ffdx
git submodule foreach --recursive git reset --hard
- name: Install dependencies
run: >
sudo apt update && sudo apt install -y wabt gotestsum
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/espresso-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Remove orbit actions
run: |
rm -rf orbit-actions
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down

0 comments on commit ded5276

Please sign in to comment.