Skip to content

Commit

Permalink
feat: upgrade postgresql and mysql-connector-j dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Mar 4, 2024
1 parent c76c964 commit 37f90e8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
node-version: 20

- name: Sematic Release
- name: Semantic Release
run: |
npm install -g @conveyal/maven-semantic-release semantic-release
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
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.casbin</groupId>
<artifactId>jdbc-adapter</artifactId>
<version>2.0.2</version>
<version>2.6.0</version>

<name>JDBC Adapter for JCasbin</name>
<description>Load policy from JDBC supported database or save policy to it</description>
Expand Down Expand Up @@ -200,9 +200,9 @@
<version>LATEST</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.28</version>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.3.0</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/com.oracle/ojdbc -->
Expand All @@ -215,7 +215,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.3.3</version>
<version>42.7.2</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
<dependency>
Expand Down

0 comments on commit 37f90e8

Please sign in to comment.