diff options
| author | Jeff Epler <jepler@unpythonic.net> | 2020-05-04 17:15:14 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@unpythonic.net> | 2020-05-04 17:15:14 -0500 |
| commit | fd383c80477f433ea74c56803c866fee1eb494f7 (patch) | |
| tree | c19c3cc24e99bd02a137e3988050b481e9ea3db2 | |
| parent | 6957aaf4d0d3fb9d08211865e2dd333f295a08d0 (diff) | |
actions: build-riscv: switch to checkout@v2
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90cfc0e83..2125a7c72 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -329,9 +329,14 @@ jobs: gcc --version riscv64-unknown-elf-gcc --version python3 --version - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 with: submodules: true + fetch-depth: 0 + - run: git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/* + - run: git submodule sync + - run: git submodule foreach git remote -v + - run: git submodule foreach git fetch --recurse-submodules=no origin +refs/tags/*:refs/tags/* - name: mpy-cross run: make -C mpy-cross -j2 - name: build |
