Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/git-commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,20 @@ jobs:
lint:
runs-on: ubuntu-latest
name: Lint Commit Messages

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js 12.x
uses: actions/setup-node@v1
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 12.x
node-version: 20
- name: Fetch origin
run: git fetch origin
- name: Event Sender
run: echo ${{ github.event.sender.login }}
- name: Lint commit message
if: ${{ github.event.sender.login != 'dependabot[bot]' }}
run: npx commitlint --from origin/${{ github.base_ref }} --to HEAD -g ./ui/package.json

13 changes: 6 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,21 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<modelVersion>4.0.0</modelVersion>

<groupId>kafka.vertx</groupId>
<artifactId>demo</artifactId>
<version>1.1.3</version>
<version>1.1.4</version>

<properties>
<kafka.version>3.3.1</kafka.version>
<vertx.version>4.3.6</vertx.version>
<logback.version>1.2.6</logback.version>
<jackson-databind.version>2.14.0</jackson-databind.version>
<vertx.version>4.5.10</vertx.version>
<logback.version>1.5.11</logback.version>
<jackson-databind.version>2.16.1</jackson-databind.version>
<junit.version>5.9.2</junit.version>
<hamcrest.version>2.2</hamcrest.version>
<maven.surefire.version>3.0.0-M5</maven.surefire.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down
Loading