Update OracleGoldenGate 23 readme with new supported platforms #857
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 }} |