Skip to content

Commit

Permalink
Merge pull request #119 from OpenLiberty/staging
Browse files Browse the repository at this point in the history
Merge staging to prod - Dependabot Bump
  • Loading branch information
gkwan-ibm committed Sep 5, 2024
2 parents fb2b79f + 757a154 commit dc6ffb0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
< "$logsPath" grep Launching
- name: Archive server logs if failed
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: server-logs
path: finish/target/liberty/wlp/usr/servers/defaultServer/logs/
16 changes: 8 additions & 8 deletions finish/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.3</version>
<version>42.7.4</version>
<scope>provided</scope>
</dependency>

Expand All @@ -45,19 +45,19 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.3</version>
<version>5.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>6.2.9.Final</version>
<version>6.2.10.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-json-binding-provider</artifactId>
<version>6.2.9.Final</version>
<version>6.2.10.Final</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -69,7 +69,7 @@
<dependency>
<groupId>org.eclipse</groupId>
<artifactId>yasson</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
<scope>test</scope>
</dependency>
<!-- tag::testcontainers[] -->
Expand All @@ -84,15 +84,15 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-reload4j</artifactId>
<version>2.0.13</version>
<version>2.0.16</version>
<scope>test</scope>
</dependency>
<!-- end::slf4j[] -->
<!-- tag::slf4j-api[] -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.13</version>
<version>2.0.16</version>
</dependency>
<!-- end::slf4j-api[] -->
<!-- end::testDependenies[] -->
Expand Down Expand Up @@ -126,7 +126,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.3.1</version>
<version>3.5.0</version>
<configuration>
<systemPropertyVariables>
<http.port>${liberty.var.http.port}</http.port>
Expand Down
10 changes: 5 additions & 5 deletions start/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,27 +36,27 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.3</version>
<version>42.7.4</version>
<scope>provided</scope>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.10.3</version>
<version>5.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>6.2.9.Final</version>
<version>6.2.10.Final</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-json-binding-provider</artifactId>
<version>6.2.9.Final</version>
<version>6.2.10.Final</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -68,7 +68,7 @@
<dependency>
<groupId>org.eclipse</groupId>
<artifactId>yasson</artifactId>
<version>3.0.3</version>
<version>3.0.4</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit dc6ffb0

Please sign in to comment.