Skip to content

Commit

Permalink
deps: Update Apache commons-compress to version 1.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored and sschuberth committed Nov 16, 2023
1 parent 6d72e44 commit 875e568
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ antlr = "4.13.1"
asciidoctorj = "2.5.10"
asciidoctorjPdf = "2.3.9"
clikt = "4.2.1"
commonsCompress = "1.24.0"
commonsCompress = "1.25.0"
cvssCalculator = "1.4.2"
cyclonedx = "8.0.3"
diffUtils = "4.12"
Expand Down
2 changes: 1 addition & 1 deletion utils/common/src/main/kotlin/ArchiveUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ fun InputStream.unpackTar(targetDirectory: File, filter: (ArchiveEntry) -> Boole
* Unpack this [ArchiveInputStream] to the [targetDirectory], skipping all entries for which [shouldSkip] returns true,
* and using what [mode] returns as the file mode bits.
*/
private fun ArchiveInputStream.unpack(
private fun <E : ArchiveEntry> ArchiveInputStream<E>.unpack(
targetDirectory: File,
shouldSkip: (ArchiveEntry) -> Boolean,
mode: (ArchiveEntry) -> Int
Expand Down

0 comments on commit 875e568

Please sign in to comment.