Skip to content

Commit

Permalink
chore(deps): update mariadb docker tag to v11.2 (#988)
Browse files Browse the repository at this point in the history
* chore(deps): update mariadb docker tag to v11.2

* Update version

* fix : label name

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raja Kolli <[email protected]>
  • Loading branch information
renovate[bot] and rajadilipkolli authored Nov 23, 2023
1 parent bf4171e commit b8080ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@ jobs:
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/[email protected]
with:
java-version: 21
distribution: "temurin"
cache: "maven"
- name: Build and analyze
run: ./mvnw clean verify
- name: Codecov
uses: codecov/[email protected]
2 changes: 1 addition & 1 deletion jpa/boot-data-customsequence/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'
services:

mariadb:
image: mariadb:11.1
image: mariadb:11.2
environment:
- MYSQL_DATABASE=appdb
- MYSQL_USER=appuser
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class TestApplication {
@Bean
@ServiceConnection
MariaDBContainer<?> mariaDbContainer() {
return new MariaDBContainer<>("mariadb:11.1");
return new MariaDBContainer<>("mariadb:11.2");
}

public static void main(String[] args) {
Expand Down

0 comments on commit b8080ab

Please sign in to comment.