Skip to content

Commit 9cb87a1

Browse files
committed
#338 common-lang up
1 parent 6a7b793 commit 9cb87a1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/mvn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
matrix:
4242
os: [ubuntu-24.04, windows-2022, macos-13]
43-
java: [11, 21]
43+
java: [11, 22]
4444
steps:
4545
- uses: actions/checkout@v4
4646
- uses: actions/setup-java@v4

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
8383
<dependency>
8484
<groupId>org.apache.commons</groupId>
8585
<artifactId>commons-lang3</artifactId>
86-
<version>3.13.0</version>
86+
<version>3.17.0</version>
8787
<scope>test</scope>
8888
</dependency>
8989
<dependency>

src/test/java/com/jcabi/xml/XMLDocumentTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ void validatesComplexXml() throws Exception {
573573
.append("<root>");
574574
for (int idx = 0; idx < loop; ++idx) {
575575
text.append("\n<a>\t&lt;&gt;&amp;&quot;&#09;&#x0A;")
576-
.append(RandomStringUtils.randomAlphanumeric(random))
576+
.append(RandomStringUtils.secure().nextAlphanumeric(random))
577577
.append("</a>\n\r \t ");
578578
}
579579
text.append("</root>");

0 commit comments

Comments
 (0)