Skip to content

Commit 2f7d381

Browse files
renovate[bot]sschuberth
authored andcommitted
deps: Update Apache commons-compress to version 1.25.0
1 parent a07f3d6 commit 2f7d381

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ antlr = "4.13.1"
1414
asciidoctorj = "2.5.10"
1515
asciidoctorjPdf = "2.3.9"
1616
clikt = "4.2.1"
17-
commonsCompress = "1.24.0"
17+
commonsCompress = "1.25.0"
1818
cvssCalculator = "1.4.2"
1919
cyclonedx = "8.0.3"
2020
diffUtils = "4.12"

utils/common/src/main/kotlin/ArchiveUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ fun InputStream.unpackTar(targetDirectory: File, filter: (ArchiveEntry) -> Boole
266266
* Unpack this [ArchiveInputStream] to the [targetDirectory], skipping all entries for which [shouldSkip] returns true,
267267
* and using what [mode] returns as the file mode bits.
268268
*/
269-
private fun ArchiveInputStream.unpack(
269+
private fun <E : ArchiveEntry> ArchiveInputStream<E>.unpack(
270270
targetDirectory: File,
271271
shouldSkip: (ArchiveEntry) -> Boolean,
272272
mode: (ArchiveEntry) -> Int

0 commit comments

Comments
 (0)