updated release versions to the Oct 2024 CPU. JDK 17.0.13 has a new license so it has to be download before building. #640
Workflow file for this run
This file contains 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 }} |