build(deps): bump the all-dependencies group with 10 updates #2853
Workflow file for this run
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: Java CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 1.11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
- name: Build with Maven | |
if: github.actor == 'dependabot[bot]' | |
env: | |
GITHUB_USERNAME: x-access-token | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: mvn package --settings .m2/maven-settings.xml --file pom.xml | |
- name: SonarCloud | |
if: github.actor != 'dependabot[bot]' | |
env: | |
GITHUB_USERNAME: x-access-token | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_PROJECTKEY: ${{ secrets.SONAR_PROJECTKEY }} | |
SONAR_LOGIN: ${{ secrets.SONAR_LOGIN }} | |
run: mvn verify --settings .m2/maven-settings.xml --file pom.xml | |
#run: mvn verify sonar:sonar --settings .m2/maven-settings.xml --file pom.xml |