Skip to content

Commit

Permalink
Merge pull request #332 from zowe/reboot/dep-update
Browse files Browse the repository at this point in the history
chore: dependency update for 2.18.0
  • Loading branch information
Shobhajayanna authored Aug 14, 2024
2 parents 44cc1ea + 7cf98ad commit 939ecab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
- name: Output APIML logs
if: always()
run: docker-compose -f .apiml/docker-compose.yml logs
run: docker compose -f .apiml/docker-compose.yml logs

- name: Store test results
uses: actions/upload-artifact@v2
Expand Down
4 changes: 2 additions & 2 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ ext {
jsonPathVersion = "2.9.0"
junitVersion = "4.13.2"
restAssuredVersion = "4.5.1"
explorerApiCommonVersion = "2.0.33"
tomcatVersion = "9.0.90"
explorerApiCommonVersion = "2.0.34"
tomcatVersion = "9.0.93"

mapStructVersion = "1.2.0.Final"
activationApiVersion = "1.2.2"
Expand Down
6 changes: 3 additions & 3 deletions scripts/run-containerized-apiml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ fi
if [ -z "${HOST_OS}" ]; then
HOST_OS="not-linux"
fi
if [ -z $(command -v docker-compose) ]; then
echo "[${SCRIPT_NAME}][error] docker-compose is required."
if [ -z $(command -v docker compose) ]; then
echo "[${SCRIPT_NAME}][error] docker compose is required."
exit 1
fi

Expand Down Expand Up @@ -180,7 +180,7 @@ sed -e "s|{WORKSPACE}|${WORKSPACE}|g" \
-e "s|{DISCOVERY_PORT}|${DISCOVERY_PORT}|g" \
-e "s|{GATEWAY_PORT}|${GATEWAY_PORT}|g" \
"scripts/containerized-apiml/$dockerComposeTemplate" > "${WORKSPACE}/docker-compose.yml"
docker-compose -f "${WORKSPACE}/docker-compose.yml" up -d
docker compose -f "${WORKSPACE}/docker-compose.yml" up -d
###################################################################
echo "[${SCRIPT_NAME}] done."
exit 0

0 comments on commit 939ecab

Please sign in to comment.