From 427cdfac4b723d731b5bee6b3f135184ee1d0b71 Mon Sep 17 00:00:00 2001 From: Diego Tavares Date: Wed, 18 Sep 2024 08:44:17 -0700 Subject: [PATCH] Attempt to fix pipeline --- .github/workflows/testing-pipeline.yml | 9 +++++++-- cuebot/build.gradle | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/testing-pipeline.yml b/.github/workflows/testing-pipeline.yml index ae2bf1abf..c748c659f 100644 --- a/.github/workflows/testing-pipeline.yml +++ b/.github/workflows/testing-pipeline.yml @@ -136,8 +136,10 @@ jobs: analyze_cuebot: runs-on: ubuntu-latest - container: aswf/ci-opencue:2020 + container: aswf/ci-opencue:2024 name: Analyze Cuebot + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: - name: Checkout uses: actions/checkout@v3 @@ -152,4 +154,7 @@ jobs: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: | chown -R aswfuser:aswfgroup . - su -c "cd cuebot && ./gradlew jacocoTestReport sonarqube -Dsonar.login=${SONAR_TOKEN}" aswfuser + echo JAVA_HOME=$JAVA_HOME + cuebot/gradlew --version + su -c "cd cuebot && ./gradlew jacocoTestReport sonarqube -Dsonar.login=$(SONAR_TOKEN)" aswfuser + diff --git a/cuebot/build.gradle b/cuebot/build.gradle index 6ce51fb96..c58655c05 100644 --- a/cuebot/build.gradle +++ b/cuebot/build.gradle @@ -10,7 +10,7 @@ buildscript { dependencies { classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.8' classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.2.1.RELEASE' - classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.7.1' + classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.5' } }