Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: ['11', '17']
java-version: ['11', '25']

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<surefire-version>3.1.2</surefire-version>
<checkstyle-plugin-version>3.3.0</checkstyle-plugin-version>
<checkstyle-version>10.23.0</checkstyle-version>
<jacoco-plugin-version>0.8.10</jacoco-plugin-version>
<jacoco-plugin-version>0.8.14</jacoco-plugin-version>
<compiler-plugin-version>3.11.0</compiler-plugin-version>
<okhttp3-version>5.3.2</okhttp3-version>
<gson-version>2.13.1</gson-version>
Expand Down
8 changes: 4 additions & 4 deletions src/test/java/com/ibm/cloud/sdk/core/util/DateUtilsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ public void testDateTime() {

// RFC 2616 HTTP Date.
_testDateTime("Fri, 27 Aug 2021 13:15:55 GMT", "2021-08-27T13:15:55.000Z");
_testDateTime("Fri, 27 Aug 2021 13:15:55 CXT", "2021-08-27T06:15:55.000Z");
_testDateTime("Fri, 27 Aug 2021 13:15:55 VLAT", "2021-08-27T03:15:55.000Z");
_testDateTime("Fri, 27 Aug 2021 13:15:55 PDT", "2021-08-27T20:15:55.000Z");
_testDateTime("Fri, 27 Aug 2021 13:15:55 EDT", "2021-08-27T17:15:55.000Z");

// RFC 850 HTTP Date.
_testDateTime("Friday, 27-Aug-2021 13:15:55 GMT", "2021-08-27T13:15:55.000Z");
_testDateTime("Friday, 27-Aug-2021 13:15:55 CXT", "2021-08-27T06:15:55.000Z");
_testDateTime("Friday, 27-Aug-2021 13:15:55 VLAT", "2021-08-27T03:15:55.000Z");
_testDateTime("Friday, 27-Aug-2021 13:15:55 PDT", "2021-08-27T20:15:55.000Z");
_testDateTime("Friday, 27-Aug-2021 13:15:55 EDT", "2021-08-27T17:15:55.000Z");

// ANSIC HTTP Date.
_testDateTime("Fri Aug 27 13:15:55 2021", "2021-08-27T13:15:55.000Z");
Expand Down
Loading