Skip to content

Commit

Permalink
Bump libraries with known CVE's
Browse files Browse the repository at this point in the history
* Bump libraries with CVE's
* GitHub Action Compile on commit
  • Loading branch information
dependabot[bot] authored Oct 18, 2022
1 parent 219f51c commit 9d53c11
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 7 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: compile
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn --batch-mode --update-snapshots package
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<name>HiveMQ Heartbeat Extension</name>
<groupId>com.hivemq.extension</groupId>
<artifactId>hivemq-heartbeat-extension</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>

<description>HiveMQ Heartbeat Extension</description>

Expand All @@ -35,19 +35,19 @@
<dependency>
<groupId>com.hivemq</groupId>
<artifactId>hivemq-extension-sdk</artifactId>
<version>4.2.0</version>
<version>4.9.0</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8.1</version>
<version>3.12.0</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.6</version>
<version>1.10.0</version>
</dependency>

<!-- For XML parsing -->
Expand Down Expand Up @@ -75,13 +75,13 @@
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.4.19.v20190610</version>
<version>10.0.10</version>
</dependency>

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-servlet</artifactId>
<version>9.4.19.v20190610</version>
<version>10.0.10</version>
</dependency>


Expand All @@ -103,7 +103,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.3</version>
<version>1.2.11</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 9d53c11

Please sign in to comment.