Adding OHS 12.2.1.4 dockerfiles and removing 12.2.1.3 which is no lon… #540
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 }} |