Bump commons-beanutils:commons-beanutils from 1.9.4 to 1.11.0 #8
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: build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build: | |
| name: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v1 | |
| with: | |
| java-version: 11 | |
| - name: Build with Maven | |
| run: ./mvnw --no-transfer-progress clean verify | |
| sonar: | |
| name: sonar analyse | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions/setup-java@v1 | |
| with: | |
| java-version: 11 | |
| - name: Run SonarCloud analyse | |
| run: > | |
| ./mvnw --batch-mode --no-transfer-progress clean | |
| org.jacoco:jacoco-maven-plugin:prepare-agent verify | |
| org.sonarsource.scanner.maven:sonar-maven-plugin:sonar | |
| -Dsonar.host.url=https://sonarcloud.io | |
| -Dsonar.organization=michael-simons-github | |
| -Dsonar.projectKey=eu.michael-simons:java-oembed | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |