Skip to content

Commit

Permalink
Merge pull request #267 from zowe/reboot/dep-upgrade
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 554d807 + 1682151 commit 4cf3378
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 @@ -148,7 +148,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 @@ -18,8 +18,8 @@
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"

activationApiVersion = "1.2.2"
xmlBindApiVersion = "2.3.3"
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 @@ -53,8 +53,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) ]; then
echo "[${SCRIPT_NAME}][error] docker is required."
exit 1
fi

Expand Down Expand Up @@ -176,7 +176,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 4cf3378

Please sign in to comment.