Skip to content

Commit 14266ee

Browse files
committed
Fix service:id:user-display name
1 parent 44f3f4f commit 14266ee

File tree

2 files changed

+8
-21
lines changed

2 files changed

+8
-21
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,14 @@ jobs:
1010
name: Build and analyze
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: s4u/setup-maven-action@v1.10.0
1414
with:
15-
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
16-
- name: Set up JDK
17-
uses: actions/setup-java@v3
18-
with:
19-
java-version: 17
20-
distribution: 'temurin'
21-
cache: 'maven'
15+
checkout-fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
16+
java-version: 21
17+
java-distribution: 'corretto'
18+
cache-path-add: ~/.sonar/cache
19+
cache-prefix: ${{ runner.os }}-sonar
20+
maven-version: 3.9.4
2221
- name: maven-settings-xml-action
2322
uses: whelk-io/maven-settings-xml-action@v21
2423
with:
@@ -28,18 +27,6 @@ jobs:
2827
]'
2928
plugin_repositories: '[{ "id": "spring-milestone", "url": "https://repo.spring.io/milestone/"}]'
3029
active_profiles: '["github"]'
31-
- name: Cache SonarCloud packages
32-
uses: actions/cache@v3
33-
with:
34-
path: ~/.sonar/cache
35-
key: ${{ runner.os }}-sonar
36-
restore-keys: ${{ runner.os }}-sonar
37-
- name: Cache Maven packages
38-
uses: actions/cache@v3
39-
with:
40-
path: ~/.m2
41-
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
42-
restore-keys: ${{ runner.os }}-m2
4330
- name: Extract Maven project version
4431
run: |
4532
echo "RELEASE_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.ligoj.api</groupId>
66
<artifactId>plugin-parent</artifactId>
7-
<version>4.0.5</version>
7+
<version>4.1.4</version>
88
<relativePath />
99
</parent>
1010

0 commit comments

Comments
 (0)