Bump quarkus.platform.version from 3.30.5 to 3.30.6 #627
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
| # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | |
| # This workflow uses actions that are not certified by GitHub. | |
| # They are provided by a third-party and are governed by | |
| # separate terms of service, privacy policy, and support | |
| # documentation. | |
| name: Java CI with Maven | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| read-all | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Start Measurement | |
| uses: green-coding-solutions/eco-ci-energy-estimation@v5 | |
| with: | |
| task: start-measurement | |
| co2-calculation-method: constant | |
| co2-grid-intensity-constant: 334 # German average in 2024 | |
| send-data: false | |
| continue-on-error: true | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: '21' | |
| distribution: 'temurin' | |
| cache: maven | |
| - name: Compile and run Checkstyle, PMD and Spotbugs checks | |
| run: mvn -B checkstyle:check pmd:check compile spotbugs:check --file pom.xml | |
| - name: Package Extension and create Docker Container for Sample Application | |
| run: mvn -B package --file pom.xml | |
| - name: Run Integration Test | |
| run: mvn -B test -Dtest=JDK8JavaAgentExtensionIT,JDK21JavaAgentExtensionIT,SpringWithExternalOtelAgentAndExtensionIT,QuarkusWithExternalOtelAgentAndExtensionIT --file ./extension/pom.xml | |
| - name: Get Energy Results | |
| uses: green-coding-solutions/eco-ci-energy-estimation@v5 | |
| with: | |
| task: get-measurement | |
| pr-comment: true | |
| co2-calculation-method: constant | |
| co2-grid-intensity-constant: 334 # German average in 2024 | |
| send-data: false | |
| continue-on-error: true | |
| - name: Show Energy Results | |
| uses: green-coding-solutions/eco-ci-energy-estimation@v5 | |
| with: | |
| task: display-results | |
| pr-comment: true | |
| co2-calculation-method: constant | |
| co2-grid-intensity-constant: 334 # German average in 2024 | |
| send-data: false | |
| continue-on-error: true | |
| # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | |
| #- name: Update dependency graph | |
| # uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 | |