Skip to content

Commit fadb89f

Browse files
feat: upgrade Java dependencies (#364)
* Update Java prereqs Signed-off-by: Trevor Dolby <[email protected]> * Update Java prereqs Signed-off-by: Trevor Dolby <[email protected]> * Enable workflow dispatch * Try node 20 * Try manual test * feat: fix commit lint nodejs issue (#2) * Try with PR only * Try node 16 * node 20 with corrected PR * feat: fix workflow Signed-off-by: Your Name [email protected] * feat: update to node.js 20 Signed-off-by: Trevor Dolby <[email protected]> * feat: update dependencies starter app (#348) --------- Signed-off-by: Trevor Dolby <[email protected]> * feat: fix commit lint text issue (#2) --------- Signed-off-by: Trevor Dolby <[email protected]>
1 parent 949f117 commit fadb89f

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/git-commit-lint.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,20 @@ jobs:
66
lint:
77
runs-on: ubuntu-latest
88
name: Lint Commit Messages
9-
9+
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
with:
1313
ref: ${{ github.event.pull_request.head.sha }}
14-
- name: Use Node.js 12.x
15-
uses: actions/setup-node@v1
14+
- name: Use Node.js 20.x
15+
uses: actions/setup-node@v4
1616
with:
17-
node-version: 12.x
17+
node-version: 20
1818
- name: Fetch origin
1919
run: git fetch origin
2020
- name: Event Sender
2121
run: echo ${{ github.event.sender.login }}
2222
- name: Lint commit message
2323
if: ${{ github.event.sender.login != 'dependabot[bot]' }}
2424
run: npx commitlint --from origin/${{ github.base_ref }} --to HEAD -g ./ui/package.json
25+

pom.xml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,21 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
5+
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>kafka.vertx</groupId>
88
<artifactId>demo</artifactId>
9-
<version>1.1.3</version>
9+
<version>1.1.4</version>
1010

1111
<properties>
12-
<kafka.version>3.3.1</kafka.version>
13-
<vertx.version>4.3.6</vertx.version>
14-
<logback.version>1.2.6</logback.version>
15-
<jackson-databind.version>2.14.0</jackson-databind.version>
12+
<vertx.version>4.5.10</vertx.version>
13+
<logback.version>1.5.11</logback.version>
14+
<jackson-databind.version>2.16.1</jackson-databind.version>
1615
<junit.version>5.9.2</junit.version>
1716
<hamcrest.version>2.2</hamcrest.version>
1817
<maven.surefire.version>3.0.0-M5</maven.surefire.version>
1918
</properties>
20-
19+
2120
<dependencyManagement>
2221
<dependencies>
2322
<dependency>

0 commit comments

Comments
 (0)