Created a docker file to offer JDK 21 on OL9 as well as the existing one on OL 8. #569
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@v6 | |
env: | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |