From 3ed5904eafe96052de4187595a13f97a7614292e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Mar 2022 17:34:08 +0000 Subject: [PATCH 1/4] Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-project.yml | 4 ++-- .github/workflows/release-project.yml | 4 ++-- .github/workflows/sonarcloud-analysis.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-project.yml b/.github/workflows/build-project.yml index c18c4f7..ae32383 100644 --- a/.github/workflows/build-project.yml +++ b/.github/workflows/build-project.yml @@ -26,12 +26,12 @@ jobs: id: buildx uses: docker/setup-buildx-action@v1 - name: Cache Docker Register - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }} - name: Cache Maven packages - uses: actions/cache@v2.1.6 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/release-project.yml b/.github/workflows/release-project.yml index 8f2cffd..8b35c16 100644 --- a/.github/workflows/release-project.yml +++ b/.github/workflows/release-project.yml @@ -25,12 +25,12 @@ jobs: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_TOKEN }} - name: Cache Docker Register - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }} - name: Cache Maven packages - uses: actions/cache@v2.1.6 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/sonarcloud-analysis.yml b/.github/workflows/sonarcloud-analysis.yml index 715a70b..6413a12 100644 --- a/.github/workflows/sonarcloud-analysis.yml +++ b/.github/workflows/sonarcloud-analysis.yml @@ -36,13 +36,13 @@ jobs: distribution: 'zulu' java-version: '11' - name: Cache SonarCloud packages - uses: actions/cache@v2.1.6 + uses: actions/cache@v3 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache Maven packages - uses: actions/cache@v2.1.6 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} From 772a2c089653355ceb602c898b5978f498bb7d18 Mon Sep 17 00:00:00 2001 From: Dennis Labordus Date: Tue, 22 Mar 2022 08:44:46 +0100 Subject: [PATCH 2/4] Add error handling library for scanning during build native image. Signed-off-by: Dennis Labordus --- app/src/main/resources/application.properties | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/src/main/resources/application.properties b/app/src/main/resources/application.properties index 6e13ed9..b1cf6b8 100644 --- a/app/src/main/resources/application.properties +++ b/app/src/main/resources/application.properties @@ -12,8 +12,11 @@ quarkus.log.level = INFO quarkus.log.category."org.lfenergy.compas.scl.auto.alignment".level = INFO # Add scanning these dependencies for scanning, also used by native compilation. -quarkus.index-dependency.scl2007b4.group-id=org.lfenergy.compas.core -quarkus.index-dependency.scl2007b4.artifact-id=commons +quarkus.index-dependency.compas-commons.group-id=org.lfenergy.compas.core +quarkus.index-dependency.compas-commons.artifact-id=commons + +quarkus.index-dependency.jaxrs-commons.group-id = org.lfenergy.compas.core +quarkus.index-dependency.jaxrs-commons.artifact-id = jaxrs-commons quarkus.index-dependency.jaxb-api.group-id=org.jboss.spec.javax.xml.bind quarkus.index-dependency.jaxb-api.artifact-id=jboss-jaxb-api_2.3_spec From 0f557e915ef46411fd9185cb7fe0f0985d71a325 Mon Sep 17 00:00:00 2001 From: Dennis Labordus Date: Tue, 22 Mar 2022 08:47:45 +0100 Subject: [PATCH 3/4] Add error handling library for scanning during build native image. Signed-off-by: Dennis Labordus --- app/src/main/resources/application.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/resources/application.properties b/app/src/main/resources/application.properties index b1cf6b8..b29fa08 100644 --- a/app/src/main/resources/application.properties +++ b/app/src/main/resources/application.properties @@ -12,14 +12,14 @@ quarkus.log.level = INFO quarkus.log.category."org.lfenergy.compas.scl.auto.alignment".level = INFO # Add scanning these dependencies for scanning, also used by native compilation. -quarkus.index-dependency.compas-commons.group-id=org.lfenergy.compas.core -quarkus.index-dependency.compas-commons.artifact-id=commons +quarkus.index-dependency.compas-commons.group-id = org.lfenergy.compas.core +quarkus.index-dependency.compas-commons.artifact-id = commons quarkus.index-dependency.jaxrs-commons.group-id = org.lfenergy.compas.core quarkus.index-dependency.jaxrs-commons.artifact-id = jaxrs-commons -quarkus.index-dependency.jaxb-api.group-id=org.jboss.spec.javax.xml.bind -quarkus.index-dependency.jaxb-api.artifact-id=jboss-jaxb-api_2.3_spec +quarkus.index-dependency.jaxb-api.group-id = org.jboss.spec.javax.xml.bind +quarkus.index-dependency.jaxb-api.artifact-id = jboss-jaxb-api_2.3_spec quarkus.index-dependency.powsybl-single-line-diagram-core.group-id=com.powsybl quarkus.index-dependency.powsybl-single-line-diagram-core.artifact-id=powsybl-single-line-diagram-core From c6e7fdf4850bff5fc930a5a104b0637f34828ef2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Mar 2022 17:24:44 +0000 Subject: [PATCH 4/4] Bump powsybl-single-line-diagram-core from 2.9.0 to 2.9.1 Bumps [powsybl-single-line-diagram-core](https://github.com/powsybl/powsybl-single-line-diagram) from 2.9.0 to 2.9.1. - [Release notes](https://github.com/powsybl/powsybl-single-line-diagram/releases) - [Commits](https://github.com/powsybl/powsybl-single-line-diagram/compare/v2.9.0...v2.9.1) --- updated-dependencies: - dependency-name: com.powsybl:powsybl-single-line-diagram-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7269067..7a13054 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ SPDX-License-Identifier: Apache-2.0 2.7.5.Final 1.7.36 - 2.9.0 + 2.9.1 2.9.0 0.9.1