Skip to content

Commit 0fe1615

Browse files
author
oyeliseiev-ua
committed
Update dependencies to fix Vulnerability alerts
1 parent ab22160 commit 0fe1615

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
java-version: '11'
3737
distribution: 'temurin'
3838
cache: maven
39-
settings-path: ci/settings.xml
4039
- name: Import GPG key
4140
run: |
4241
openssl enc -d -aes-256-cbc -K ${{ secrets.ENCRYPTION_KEY }} \
@@ -45,6 +44,4 @@ jobs:
4544
gpg --import ci/secring.asc
4645
- name: Release to Maven Central
4746
if: ${{ success() }}
48-
run: mvn clean deploy -DskipTests \
49-
-Dsonatype.username=${{ secrets.SONATYPE_USERNAME }} \
50-
-Dsonatype.password=${{ secrets.SONATYPE_PASSWORD }}
47+
run: mvn -s ci/settings.xml clean deploy -DskipTests

ci/settings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<servers>
2121
<server>
2222
<id>ossrh</id>
23-
<username>${sonatype.username}</username>
24-
<password>${sonatype.password}</password>
23+
<username>${secrets.SONATYPE_USERNAME}</username>
24+
<password>${secrets.SONATYPE_PASSWORD}</password>
2525
</server>
2626
</servers>
2727
</settings>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<osgi.version>6.0.0</osgi.version>
2121
<osgi.compendium.version>5.0.0</osgi.compendium.version>
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23-
<logback.version>1.5.6</logback.version>
23+
<logback.version>1.5.13</logback.version>
2424
<logback-java8.version>1.3.12</logback-java8.version>
2525
<jacoco.version>0.8.12</jacoco.version>
2626
<waffle-jna.version>3.3.0</waffle-jna.version>
@@ -81,7 +81,7 @@
8181
<dependency>
8282
<groupId>software.amazon.awssdk</groupId>
8383
<artifactId>bom</artifactId>
84-
<version>2.21.1</version>
84+
<version>2.31.50</version>
8585
<type>pom</type>
8686
<scope>import</scope>
8787
</dependency>

0 commit comments

Comments
 (0)