Updated OpenJDK version from 25 to 25.0.1 per Oct 2025 CPU release #932
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: Lint new or modified files using Super Linter | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| lint-new-modified-files: | |
| name: Lint new or modified files | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: read | |
| statuses: write | |
| steps: | |
| - name: Checkout Git repository with history | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set environment variables | |
| run: cat .github/super-linter.env >> "$GITHUB_ENV" | |
| - name: Run Super Linter | |
| uses: github/super-linter/slim@v7 | |
| env: | |
| DEFAULT_BRANCH: main | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |