From ec3a52c668ec6786e925e197fc01d75bb7f5bb93 Mon Sep 17 00:00:00 2001 From: SX <50966843+S-S-X@users.noreply.github.com> Date: Sun, 6 Feb 2022 15:46:45 +0200 Subject: [PATCH] Upgrade actions/checkout to v2 (#260) * Upgrade actions/checkout to v2 * Upgrade actions/checkout to v2 * Upgrade actions/checkout to v2 * With submodules * With submodules * With submodules * With submodules * Revert "With submodules" This reverts commit 38c69d0cddbccf0f16068129ee8c2cc12fd0a7d1. Revert "With submodules" This reverts commit 518959893a15f1a5078c6a6ec4703dc3ea8527de. --- .github/workflows/integration-test-latest.yml | 2 +- .github/workflows/integration-test.yml | 2 +- .github/workflows/mtinfo.yml | 2 +- generate-mtinfo.sh | 2 +- integration-test.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/integration-test-latest.yml b/.github/workflows/integration-test-latest.yml index 0f90b2f5..80463fa2 100644 --- a/.github/workflows/integration-test-latest.yml +++ b/.github/workflows/integration-test-latest.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: test run: MINETEST_VERSION=latest ./integration-test.sh diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 4920a294..74ad7a48 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: test run: MINETEST_VERSION=5.2.0 ./integration-test.sh diff --git a/.github/workflows/mtinfo.yml b/.github/workflows/mtinfo.yml index 4d118af3..ec57cb30 100644 --- a/.github/workflows/mtinfo.yml +++ b/.github/workflows/mtinfo.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: generate run: ./generate-mtinfo.sh diff --git a/generate-mtinfo.sh b/generate-mtinfo.sh index 20ed4188..533ef2c2 100755 --- a/generate-mtinfo.sh +++ b/generate-mtinfo.sh @@ -8,7 +8,7 @@ echo "moreblocks.stairsplus_in_creative_inventory = false" >> ${CONFIG} # prepare dependent mods WORLDMODS_DIR=/tmp/technic_worldmods -git clone --depth=1 https://github.com/mt-mods/basic_materials.git ${WORLDMODS_DIR}/basic_materials +git clone --recurse-submodules --depth=1 https://github.com/mt-mods/basic_materials.git ${WORLDMODS_DIR}/basic_materials git clone --depth=1 https://github.com/mt-mods/pipeworks.git ${WORLDMODS_DIR}/pipeworks git clone --depth=1 https://github.com/mt-mods/unifieddyes.git ${WORLDMODS_DIR}/unifieddyes git clone --depth=1 https://github.com/minetest-mods/moreblocks.git ${WORLDMODS_DIR}/moreblocks diff --git a/integration-test.sh b/integration-test.sh index f194d2d2..2b4e3983 100755 --- a/integration-test.sh +++ b/integration-test.sh @@ -13,7 +13,7 @@ EOF rm -rf ${WORLDDIR} mkdir -p ${WORLDMODDIR} -git clone --depth 1 https://github.com/mt-mods/basic_materials.git ${WORLDMODDIR}/basic_materials +git clone --recurse-submodules --depth 1 https://github.com/mt-mods/basic_materials.git ${WORLDMODDIR}/basic_materials git clone --depth 1 https://github.com/mt-mods/pipeworks.git ${WORLDMODDIR}/pipeworks git clone --depth 1 https://github.com/minetest-mods/moreores.git ${WORLDMODDIR}/moreores