Skip to content

Commit

Permalink
Upgrade actions/checkout to v2 (#260)
Browse files Browse the repository at this point in the history
* 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 38c69d0.

Revert "With submodules"

This reverts commit 5189598.
  • Loading branch information
S-S-X committed Feb 6, 2022
1 parent c6e605c commit ec3a52c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-test-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/mtinfo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion generate-mtinfo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ec3a52c

Please sign in to comment.