Skip to content

Commit

Permalink
bump create-pull-request to v7 and some typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
robstoll committed Sep 4, 2024
1 parent e4304ce commit 8405991
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/.github/workflows/cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Cleanup Sources
run: ./scripts/cleanup-on-push-to-main.sh
- name: Create Pull Request if necessary
uses: peter-evans/create-pull-request@v6
uses: peter-evans/create-pull-request@v7
with:
branch: auto-cleanup
title: Auto Cleanup
Expand Down
4 changes: 2 additions & 2 deletions src/.github/workflows/matrix_commons.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function configureJavaDefaults(matrix, distributionAxis = javaDistributionAxis,
// This specifies the order of axes in CI job name (individual titles would be joined with a comma)
matrix.setNamePattern(['java_version', 'java_distribution', 'os']);

// arm64 architecture is not suported for IBM Semeru
// arm64 architecture is not supported by IBM Semeru
matrix.exclude({java_distribution: 'semeru', os: 'macos-latest'});

generateJavaMinMaxRows(matrix);
Expand Down Expand Up @@ -92,7 +92,7 @@ function setOutput(key, value) {
const output = process.env['GITHUB_OUTPUT']
if (output !== undefined){
fs.appendFileSync(output, `${key}=${value}${os.EOL}`)
} else{
} else {
console.log('::set-output name=' + key + '::' + value);
}
}
Expand Down

0 comments on commit 8405991

Please sign in to comment.