Skip to content

Commit

Permalink
Test on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioPinheiro committed Apr 30, 2024
1 parent ea16515 commit e2d2134
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
7 changes: 4 additions & 3 deletions .github/.scala-steward.conf → .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ pullRequests.grouping = [
{ name = "all", title = "build: scala-steward dependency updates", "filter" = [{"group" = "*"}] }
]

# updates.ignore = [
# { groupId = "dev.zio", artifactId = "zio-json" }, #TODO
updates.ignore = [
# { groupId = "com.softwaremill.sttp.tapir", artifactId = "tapir-json-zio" }, #TODO
# ]
{ groupId = "com.github.dasniko", artifactId = "testcontainers-keycloak" }, #TODO
{ groupId = "org.keycloak", artifactId = "keycloak-authz-client" } #TODO
]
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ lazy val V = new {
val typesafeConfig = "1.4.3"
val protobuf = "3.1.9"
val testContainersScala = "0.41.3"
val testContainersJavaKeycloak = "3.3.0" // scala-steward:off
val testContainersJavaKeycloak = "3.2.0" // scala-steward:off

val doobie = "1.0.0-RC5"
val quill = "4.8.3"
Expand All @@ -92,7 +92,7 @@ lazy val V = new {
val micrometer = "1.11.11"

val nimbusJwt = "10.0.0"
val keycloak = "23.0.7" // scala-steward:off
val keycloak = "23.0.7" // scala-steward:off //TODO 24.0.3 // update all quay.io/keycloak/keycloak

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import zio.test.TestAspect.*

import java.util.UUID

/* testOnly org.hyperledger.identus.iam.authorization.keycloak.admin.KeycloakPermissionManagementServiceSpec */
object KeycloakPermissionManagementServiceSpec
extends ZIOSpecDefault
with KeycloakTestContainerSupport
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/shared/docker-compose-mt-keycloak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ services:
- swagger-ui

keycloak:
image: quay.io/keycloak/keycloak:24.0.3
image: quay.io/keycloak/keycloak:23.0.7
ports:
- "9980:8080"
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.testcontainers.utility.DockerImageName

object KeycloakTestContainer {
def keycloakContainer(
imageName: String = "quay.io/keycloak/keycloak:24.0.3",
imageName: String = "quay.io/keycloak/keycloak:23.0.7",
): KeycloakContainerCustom = {
val isOnGithubRunner = sys.env.contains("GITHUB_NETWORK")
val container =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
version: "3.8"

services:

keycloak:
image: quay.io/keycloak/keycloak:24.0.3
image: quay.io/keycloak/keycloak:23.0.7
ports:
- "${KEYCLOAK_HTTP_PORT}:8080"
environment:
Expand Down

0 comments on commit e2d2134

Please sign in to comment.