Skip to content

Commit

Permalink
Bump plugin-api to 4.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fdaugan committed Jan 17, 2024
1 parent a31770a commit c50c24d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@ jobs:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: s4u/setup-maven-action@v1.10.0
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
checkout-fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
java-version: 21
java-distribution: 'corretto'
cache-path-add: ~/.sonar/cache
cache-prefix: ${{ runner.os }}-sonar
maven-version: 3.9.4
- name: maven-settings-xml-action
uses: whelk-io/maven-settings-xml-action@v21
with:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.ligoj.api</groupId>
<artifactId>plugin-parent</artifactId>
<version>4.0.5</version>
<version>4.1.4</version>
<relativePath />
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class StorageResourceTest extends AbstractAppTest {

@BeforeEach
void prepareData() throws IOException {
persistEntities("csv", new Class[]{Node.class}, StandardCharsets.UTF_8);
persistEntities("csv", new Class<?>[]{Node.class}, StandardCharsets.UTF_8);
}

@Test
Expand Down

0 comments on commit c50c24d

Please sign in to comment.