Skip to content

Commit 37f90e8

Browse files
committed
feat: upgrade postgresql and mysql-connector-j dependencies
1 parent c76c964 commit 37f90e8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/maven-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
- name: Set up Node.js
7272
uses: actions/setup-node@v2
7373
with:
74-
node-version: 18
74+
node-version: 20
7575

76-
- name: Sematic Release
76+
- name: Semantic Release
7777
run: |
7878
npm install -g @conveyal/maven-semantic-release semantic-release
7979
semantic-release --prepare @conveyal/maven-semantic-release --publish @semantic-release/github,@conveyal/maven-semantic-release --verify-conditions @semantic-release/github,@conveyal/maven-semantic-release --verify-release @conveyal/maven-semantic-release

pom.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.casbin</groupId>
88
<artifactId>jdbc-adapter</artifactId>
9-
<version>2.0.2</version>
9+
<version>2.6.0</version>
1010

1111
<name>JDBC Adapter for JCasbin</name>
1212
<description>Load policy from JDBC supported database or save policy to it</description>
@@ -200,9 +200,9 @@
200200
<version>LATEST</version>
201201
</dependency>
202202
<dependency>
203-
<groupId>mysql</groupId>
204-
<artifactId>mysql-connector-java</artifactId>
205-
<version>8.0.28</version>
203+
<groupId>com.mysql</groupId>
204+
<artifactId>mysql-connector-j</artifactId>
205+
<version>8.3.0</version>
206206
<scope>test</scope>
207207
</dependency>
208208
<!-- https://mvnrepository.com/artifact/com.oracle/ojdbc -->
@@ -215,7 +215,7 @@
215215
<dependency>
216216
<groupId>org.postgresql</groupId>
217217
<artifactId>postgresql</artifactId>
218-
<version>42.3.3</version>
218+
<version>42.7.2</version>
219219
</dependency>
220220
<!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
221221
<dependency>

0 commit comments

Comments
 (0)