Skip to content

Commit 8d57dd2

Browse files
authored
Merge branch 'develop' into dependabot/github_actions/github/codeql-action-3
2 parents bd4a0f9 + 8b9e079 commit 8d57dd2

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v3
38+
uses: actions/checkout@v4
3939

4040
- name: Cache Maven packages
41-
uses: actions/cache@v1
41+
uses: actions/cache@v4
4242
with:
4343
path: ~/.m2
4444
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/maven.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ jobs:
2626
distribution: 'temurin'
2727
cache: maven
2828

29-
- name: Cache SonarCloud packages
30-
uses: actions/cache@v1
31-
with:
32-
path: ~/.sonar/cache
33-
key: ${{ runner.os }}-sonar
34-
restore-keys: ${{ runner.os }}-sonar
29+
# - name: Cache SonarCloud packages
30+
# uses: actions/cache@v4
31+
# with:
32+
# path: ~/.sonar/cache
33+
# key: ${{ runner.os }}-sonar
34+
# restore-keys: ${{ runner.os }}-sonar
3535

3636
- name: Cache Maven packages
37-
uses: actions/cache@v1
37+
uses: actions/cache@v4
3838
with:
3939
path: ~/.m2
4040
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -45,9 +45,9 @@ jobs:
4545
JAVA_HOME: ${{ env.JAVA_HOME_11_X64 }}
4646
run: mvn clean install javadoc:javadoc
4747

48-
- name: Analyze with SonarQube
49-
env:
50-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
52-
JAVA_HOME: ${{ env.JAVA_HOME_17_X64 }}
53-
run: mvn -B org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=aecu
48+
# - name: Analyze with SonarQube
49+
# env:
50+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
51+
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
52+
# JAVA_HOME: ${{ env.JAVA_HOME_17_X64 }}
53+
# run: mvn -B org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=aecu

0 commit comments

Comments
 (0)