Skip to content

Commit f8e1fff

Browse files
Merge pull request #186 from com-pas/develop
New Release
2 parents 8c0ed76 + 4391c0a commit f8e1fff

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/automate-projects.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
steps:
1515
- name: add-new-issues-to-organization-based-project-column
1616
if: github.event_name == 'issues' && github.event.action == 'opened'
17-
uses: alex-page/github-project-automation-plus@v0.8.2
17+
uses: alex-page/github-project-automation-plus@v0.8.3
1818
with:
1919
project: CoMPAS Issues Overview Board
2020
column: To do
2121
repo-token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }}
2222
- name: add-new-pull-request-to-organization-based-project-column
2323
if: (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.action == 'opened'
24-
uses: alex-page/github-project-automation-plus@v0.8.2
24+
uses: alex-page/github-project-automation-plus@v0.8.3
2525
with:
2626
project: CoMPAS Pull Request Overview Board
2727
column: To do

.github/workflows/build-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
id: buildx
4040
uses: docker/setup-buildx-action@v2
4141
- name: Set up JDK 17
42-
uses: actions/setup-java@v3.6.0
42+
uses: actions/setup-java@v3.10.0
4343
with:
4444
distribution: 'zulu'
4545
java-version: '17'

.github/workflows/release-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "##[set-output name=tagname;]$(echo ${GITHUB_REF##*/})"
3737

3838
- name: Set up JDK 17
39-
uses: actions/setup-java@v3.6.0
39+
uses: actions/setup-java@v3.10.0
4040
with:
4141
distribution: 'zulu'
4242
java-version: '17'

.github/workflows/sonarcloud-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
restore-keys: ${{ runner.os }}-m2
4545

4646
- name: Set up JDK 17
47-
uses: actions/setup-java@v3.6.0
47+
uses: actions/setup-java@v3.10.0
4848
with:
4949
distribution: 'zulu'
5050
java-version: '17'

app/src/main/docker/Dockerfile.jvm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# docker run -i --rm -p 8080:8080 -p 5005:5005 -e JAVA_ENABLE_DEBUG="true" quarkus/app-jvm
2222
#
2323
###
24-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7-923
24+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7-1085
2525

2626
ARG JAVA_PACKAGE=java-17-openjdk-headless
2727
ARG RUN_JAVA_VERSION=1.3.8

app/src/main/docker/Dockerfile.native

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# docker run -i --rm -p 8080:8080 quarkus/app
1515
#
1616
###
17-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7-923
17+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7-1085
1818
WORKDIR /work/
1919
RUN chown 1001 /work \
2020
&& chmod "g+rwX" /work \

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ SPDX-License-Identifier: Apache-2.0
2020
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2121

2222
<compiler-plugin.version>3.10.1</compiler-plugin.version>
23-
<surefire-plugin.version>3.0.0-M7</surefire-plugin.version>
23+
<surefire-plugin.version>3.0.0-M9</surefire-plugin.version>
2424
<sonarqube-plugin.version>3.2.0</sonarqube-plugin.version>
2525

2626
<compas.core.version>0.11.0</compas.core.version>
2727

28-
<quarkus.platform.version>2.14.1.Final</quarkus.platform.version>
29-
<log4j2.version>2.19.0</log4j2.version>
30-
<powsybl.sld.version>3.0.0</powsybl.sld.version>
31-
<gson.version>2.10</gson.version>
28+
<quarkus.platform.version>2.16.3.Final</quarkus.platform.version>
29+
<log4j2.version>2.20.0</log4j2.version>
30+
<powsybl.sld.version>3.1.0</powsybl.sld.version>
31+
<gson.version>2.10.1</gson.version>
3232
<openpojo.version>0.9.1</openpojo.version>
3333
</properties>
3434

@@ -240,7 +240,7 @@ SPDX-License-Identifier: Apache-2.0
240240
<plugin>
241241
<groupId>org.apache.maven.plugins</groupId>
242242
<artifactId>maven-javadoc-plugin</artifactId>
243-
<version>3.4.1</version>
243+
<version>3.5.0</version>
244244
<executions>
245245
<execution>
246246
<id>attach-javadocs</id>

0 commit comments

Comments
 (0)