Skip to content

Commit 8510767

Browse files
author
Dennis Labordus
authored
Merge pull request #153 from com-pas/develop
New release
2 parents 5dc30eb + 4f3f346 commit 8510767

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
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.1
17+
uses: alex-page/github-project-automation-plus@v0.8.2
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.1
24+
uses: alex-page/github-project-automation-plus@v0.8.2
2525
with:
2626
project: CoMPAS Pull Request Overview Board
2727
column: To do

.github/workflows/build-project.yml

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

4747
- name: Create custom Maven Settings.xml
48-
uses: whelk-io/maven-settings-xml-action@v20
48+
uses: whelk-io/maven-settings-xml-action@v21
4949
with:
5050
output_file: custom_maven_settings.xml
5151
servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]'

.github/workflows/release-project.yml

Lines changed: 2 additions & 2 deletions
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.5.0
39+
uses: actions/setup-java@v3.6.0
4040
with:
4141
distribution: 'zulu'
4242
java-version: '17'
@@ -50,7 +50,7 @@ jobs:
5050
password: ${{ secrets.DOCKER_HUB_TOKEN }}
5151

5252
- name: Create custom Maven Settings.xml
53-
uses: whelk-io/maven-settings-xml-action@v20
53+
uses: whelk-io/maven-settings-xml-action@v21
5454
with:
5555
output_file: custom_maven_settings.xml
5656
servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]'

.github/workflows/sonarcloud-analysis.yml

Lines changed: 2 additions & 2 deletions
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.5.0
47+
uses: actions/setup-java@v3.6.0
4848
with:
4949
distribution: 'zulu'
5050
java-version: '17'
@@ -56,7 +56,7 @@ jobs:
5656
-Dsonar.projectKey=com-pas_compas-scl-auto-alignment \
5757
-Dsonar.organization=com-pas )"
5858
- name: Create custom Maven Settings.xml
59-
uses: whelk-io/maven-settings-xml-action@v20
59+
uses: whelk-io/maven-settings-xml-action@v21
6060
with:
6161
output_file: custom_maven_settings.xml
6262
servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]'

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.6
24+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
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.6
17+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.7
1818
WORKDIR /work/
1919
RUN chown 1001 /work \
2020
&& chmod "g+rwX" /work \

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ SPDX-License-Identifier: Apache-2.0
2525

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

28-
<quarkus.platform.version>2.12.2.Final</quarkus.platform.version>
29-
<slf4j.version>2.0.1</slf4j.version>
30-
<powsybl.sld.version>2.13.0</powsybl.sld.version>
31-
<gson.version>2.9.1</gson.version>
28+
<quarkus.platform.version>2.14.0.Final</quarkus.platform.version>
29+
<slf4j.version>2.0.3</slf4j.version>
30+
<powsybl.sld.version>2.13.1</powsybl.sld.version>
31+
<gson.version>2.10</gson.version>
3232
<openpojo.version>0.9.1</openpojo.version>
3333
</properties>
3434

0 commit comments

Comments
 (0)