Skip to content

Commit

Permalink
ci: Updated the checkout action to V4.
Browse files Browse the repository at this point in the history
Also fetched all submodule commits, otherwise the future LWIP submodule fails
to fetch.

Signed-off-by: Adrien Ricciardi <[email protected]>
  • Loading branch information
RICCIARDI-Adrien committed Nov 13, 2023
1 parent e61564f commit e3e90a3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Build Goil
run: ./build.py
working-directory: goil/makefile-unix
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-viper.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Build
run: make
working-directory: viper
3 changes: 2 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: arm-none-eabi-gcc GNU Arm Embedded Toolchain
uses: carlosperate/[email protected]
Expand Down

0 comments on commit e3e90a3

Please sign in to comment.