Skip to content

Commit 36bddba

Browse files
authored
Merge pull request #255 from navikt/deps
Deps
2 parents 2def70d + b288058 commit 36bddba

File tree

8 files changed

+10
-12
lines changed

8 files changed

+10
-12
lines changed

Diff for: .github/workflows/deploy-to-dev.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/setup-java@v4
1818
with:
1919
distribution: 'temurin'
20-
java-version: 17
20+
java-version: 21
2121
- name: Setup cache
2222
uses: actions/cache@v3
2323
with:

Diff for: .github/workflows/deploy-to-prod.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/setup-java@v4
2222
with:
2323
distribution: 'temurin'
24-
java-version: 17
24+
java-version: 21
2525
- name: Setup cache
2626
uses: actions/cache@v3
2727
with:

Diff for: .github/workflows/test-and-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/setup-java@v4
1515
with:
1616
distribution: 'temurin'
17-
java-version: 17
17+
java-version: 21
1818
- name: Setup cache
1919
uses: actions/cache@v3
2020
with:

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/navikt/baseimages/temurin:17
1+
FROM ghcr.io/navikt/baseimages/temurin:21
22
COPY build/libs/personopplysninger-api-all.jar /app/app.jar
33
ENV JAVA_OPTS="-XX:MaxRAMPercentage=75 \
44
-XX:+HeapDumpOnOutOfMemoryError \

Diff for: build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
val versions = object {
55
val kotlin = "1.9.22"
66
val shadow = "8.1.1"
7-
val versions = "0.50.0"
7+
val versions = "0.51.0"
88
}
99

1010
kotlin("jvm") version (versions.kotlin)
@@ -17,7 +17,7 @@ plugins {
1717
}
1818

1919
kotlin {
20-
jvmToolchain(17)
20+
jvmToolchain(21)
2121
}
2222

2323
repositories {
@@ -39,9 +39,9 @@ dependencies {
3939
val ktor = "2.3.7"
4040
val logback = "1.4.14"
4141
val logstash = "7.4"
42-
val micrometer = "1.12.1"
43-
val mockk = "1.13.8"
44-
val navSecurity = "3.2.0"
42+
val micrometer = "1.12.2"
43+
val mockk = "1.13.9"
44+
val navSecurity = "4.1.0"
4545
val kotlin = "1.9.22"
4646
val tmsKtorTokenSupport = "4.0.0"
4747
val tmsVarselBuilder = "1.0.1"

Diff for: nais/dev-gcp/personbruker.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"ingresses": [
33
"https://www.intern.dev.nav.no/person/personopplysninger-api"
44
],
5-
"kodeverk-api-host": "kodeverk.dev-fss-pub.nais.io",
65
"norg2-host": "norg2.dev-fss-pub.nais.io",
76
"digdir-krr-proxy-host": "digdir-krr-proxy.intern.dev.nav.no",
87
"pdl-mottak-host": "pdl-mottak.dev-fss-pub.nais.io",

Diff for: nais/nais.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
accessPolicy:
3333
outbound:
3434
external:
35-
- host: {{ kodeverk-api-host }}
35+
- host: kodeverk-api.nav.no
3636
- host: {{ norg2-host }}
3737
- host: {{ digdir-krr-proxy-host }}
3838
- host: {{ pdl-mottak-host }}

Diff for: nais/prod-gcp/personbruker.json

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"ingresses": [
33
"https://www.nav.no/person/personopplysninger-api"
44
],
5-
"kodeverk-api-host": "kodeverk.prod-fss-pub.nais.io",
65
"norg2-host": "norg2.prod-fss-pub.nais.io",
76
"digdir-krr-proxy-host": "digdir-krr-proxy.intern.nav.no",
87
"pdl-mottak-host": "pdl-mottak.prod-fss-pub.nais.io",

0 commit comments

Comments
 (0)