From 859ba2b5e153bd5959fad42cbd21fd87a2643cdb Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Wed, 3 Apr 2024 20:28:45 +0200 Subject: chore(deps): bump dependencies --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6138fad1..1d57d565 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,10 +27,10 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: ${{ !steps.check-secret.outputs.is_SONAR_TOKEN_set && 1 || 0 }} # Shallow clones should be disabled for a better relevancy of SonarCloud analysis - - name: Set up JDK 17 + - name: Set up JDK 21 uses: actions/setup-java@v3 with: - java-version: 17 + java-version: 21 distribution: temurin - name: Cache Gradle packages uses: actions/cache@v3 @@ -62,16 +62,15 @@ jobs: key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: ${{ runner.os }}-yarn - name: Gradle build - if: ${{ !steps.check-secret.outputs.is_SONAR_TOKEN_set }} run: | ./gradlew build -Pci --info - - name: Gradle build and Sonar analyze + - name: Sonar analyze if: ${{ steps.check-secret.outputs.is_SONAR_TOKEN_set }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed by Sonar to get PR information, if any SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: | - ./gradlew build sonar -Pci --info + ./gradlew sonar -Pci --info reuse-check: name: REUSE Compliance Check runs-on: ubuntu-latest -- cgit v1.2.3-54-g00ecf