Skip to content
This repository has been archived by the owner on Jul 3, 2024. It is now read-only.

Commit

Permalink
Dependency bumps confluent 7.1.1 (#52)
Browse files Browse the repository at this point in the history
Github actions setup-java V3
  • Loading branch information
MikAoJk authored Apr 29, 2022
1 parent fb7d73f commit ea2a86e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:
uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17

- name: Setup build cache
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:
uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17

- name: Setup build cache
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17

- name: Setup build cache
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Add the dependency:
#### Gradle
```
dependencies {
testImplementation "no.nav:kafka-embedded-env:3.1.2"
testImplementation "no.nav:kafka-embedded-env:3.1.3"
}
```

Expand All @@ -60,7 +60,7 @@ dependencies {
<dependency>
<groupId>no.nav</groupId>
<artifactId>kafka-embedded-env</artifactId>
<version>3.1.2</version>
<version>3.1.3</version>
<scope>test</scope>
</dependency>
```
Expand Down Expand Up @@ -171,6 +171,10 @@ for the set of available operations.

## Changelog

### [3.1.3]
- Dependency bumps Confluent 7.1.1
- Github actions setup-java to v3

### [3.1.2]
- Bad merge fix

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>no.nav</groupId>
<artifactId>kafka-embedded-env</artifactId>
<version>3.1.2-SNAPSHOT</version>
<version>3.1.3-SNAPSHOT</version>
<name>kafka-embedded-env</name>
<description>Simple API for running a Kafka/Confluent environment locally</description>
<url>https://github.com/navikt/kafka-embedded-env</url>
Expand All @@ -13,7 +13,7 @@
<kotlin.version>1.6.21</kotlin.version>
<kafka.version>3.1.0</kafka.version>
<ktor.version>2.0.0</ktor.version>
<confluent.version>7.1.0</confluent.version>
<confluent.version>7.1.1</confluent.version>
<spek.version>2.0.18</spek.version>
<kluent.version>1.68</kluent.version>
<logback.version>1.2.11</logback.version>
Expand Down

0 comments on commit ea2a86e

Please sign in to comment.