Skip to content

Commit e07e878

Browse files
Dependabot Bump (#240)
* Bump org.junit.jupiter:junit-jupiter from 5.11.0 to 5.11.1 in /start Bumps [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) from 5.11.0 to 5.11.1. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.11.0...r5.11.1) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Bump org.junit.jupiter:junit-jupiter from 5.11.0 to 5.11.1 in /finish Bumps [org.junit.jupiter:junit-jupiter](https://github.com/junit-team/junit5) from 5.11.0 to 5.11.1. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](junit-team/junit-framework@r5.11.0...r5.11.1) --- updated-dependencies: - dependency-name: org.junit.jupiter:junit-jupiter dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Update dockerImageTest.sh --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent e81507b commit e07e878

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

finish/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ xsi:schemaLocation=
4242
<dependency>
4343
<groupId>org.junit.jupiter</groupId>
4444
<artifactId>junit-jupiter</artifactId>
45-
<version>5.11.0</version>
45+
<version>5.11.1</version>
4646
<scope>test</scope>
4747
</dependency>
4848
<dependency>

scripts/dockerImageTest.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/bin/bash
2-
while getopts t:d: flag;
2+
while getopts t:d:v: flag;
33
do
44
case "${flag}" in
55
t) DATE="${OPTARG}";;
66
d) DRIVER="${OPTARG}";;
7+
v) OL_LEVEL="${OPTARG}";;
78
*) echo "Invalid option";;
89
esac
910
done
@@ -13,7 +14,11 @@ echo "Testing latest OpenLiberty Docker image"
1314
sed -i "\#<artifactId>liberty-maven-plugin</artifactId>#a<configuration><install><runtimeUrl>https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/runtime/nightly/$DATE/$DRIVER</runtimeUrl></install></configuration>" pom.xml
1415
cat pom.xml
1516

16-
sed -i "s;FROM icr.io/appcafe/open-liberty:kernel-slim-java11-openj9-ubi;FROM cp.stg.icr.io/cp/olc/open-liberty-daily:full-java11-openj9-ubi;g" Dockerfile
17+
if [[ "$OL_LEVEL" != "" ]]; then
18+
sed -i "s;FROM icr.io/appcafe/open-liberty:kernel-slim-java11-openj9-ubi;FROM cp.stg.icr.io/cp/olc/open-liberty-vnext:$OL_LEVEL-full-java11-openj9-ubi;g" Dockerfile
19+
else
20+
sed -i "s;FROM icr.io/appcafe/open-liberty:kernel-slim-java11-openj9-ubi;FROM cp.stg.icr.io/cp/olc/open-liberty-daily:full-java11-openj9-ubi;g" Dockerfile
21+
fi
1722
sed -i "s;RUN features.sh;#RUN features.sh;g" Dockerfile
1823
cat Dockerfile
1924

start/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ xsi:schemaLocation=
4242
<dependency>
4343
<groupId>org.junit.jupiter</groupId>
4444
<artifactId>junit-jupiter</artifactId>
45-
<version>5.11.0</version>
45+
<version>5.11.1</version>
4646
<scope>test</scope>
4747
</dependency>
4848
<dependency>

0 commit comments

Comments
 (0)