File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
plugin/src/test/java/io/jenkins/plugins/forensics/git/blame Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2222 - name : Set up JDK ${{ matrix.jdk }}
2323 uses : actions/setup-java@v5
2424 with :
25- distribution : ' temurin '
25+ distribution : ' corretto '
2626 java-version : ' ${{ matrix.jdk }}'
2727 check-latest : true
2828 cache : ' maven'
Original file line number Diff line number Diff line change 1919
2020import java .io .File ;
2121import java .io .IOException ;
22+ import java .nio .charset .StandardCharsets ;
2223
2324import org .jenkinsci .plugins .gitclient .GitClient ;
2425import hudson .FilePath ;
@@ -320,7 +321,7 @@ private byte[] getRawCommit(final int commitTime) {
320321 Commit message""" .formatted (
321322 commitTime ,
322323 commitTime )
323- .getBytes ();
324+ .getBytes (StandardCharsets . UTF_8 );
324325 }
325326
326327 private BlameResult createResult (final int size ) {
Original file line number Diff line number Diff line change 66 <parent >
77 <groupId >org.jvnet.hudson.plugins</groupId >
88 <artifactId >analysis-pom</artifactId >
9- <version >10.2715.v615cde31c843 </version >
9+ <version >10.2792.v9dd09fb_3c255 </version >
1010 <relativePath />
1111 </parent >
1212
You can’t perform that action at this time.
0 commit comments