diff --git a/src/.github/workflows/cleanup.yml b/src/.github/workflows/cleanup.yml index 8299ea4..8e457e1 100644 --- a/src/.github/workflows/cleanup.yml +++ b/src/.github/workflows/cleanup.yml @@ -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 diff --git a/src/.github/workflows/matrix_commons.js b/src/.github/workflows/matrix_commons.js index 832883c..8c3f543 100644 --- a/src/.github/workflows/matrix_commons.js +++ b/src/.github/workflows/matrix_commons.js @@ -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); @@ -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); } }