Bump org.junit.jupiter:junit-jupiter from 5.14.0 to 5.14.1 #60
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: Snapshot | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| outputs: | |
| current_version: ${{ steps.metadata.outputs.current_version }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
| - name: Set up Java to JDK 11 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'adopt' | |
| java-version: '11' | |
| - name: Cache Gradle packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
| restore-keys: ${{ runner.os }}-gradle | |
| - name: Lint with Gradle | |
| run: ./gradlew spotlessCheck | |
| - name: Build and analyze | |
| run: ./gradlew build --info | |
| - name: Publish test report | |
| if: always() | |
| uses: mikepenz/action-junit-report@v5 | |
| with: | |
| report_paths: '**/build/test-results/test/TEST-*.xml' | |
| - name: Grype source code | |
| id: grype_source_code | |
| uses: anchore/scan-action@v7 | |
| with: | |
| path: . | |
| fail-build: true | |
| severity-cutoff: high | |
| only-fixed: true | |
| - name: Upload Grype source code report | |
| if: always() && steps.grype_source_code.outputs.sarif != '' | |
| uses: github/codeql-action/upload-sarif@v4 | |
| with: | |
| sarif_file: ${{ steps.grype_source_code.outputs.sarif }} | |
| category: source-code | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: kafka-connect-plugins | |
| path: ${{ github.workspace }}/build/libs/*.jar |