Skip to content

Commit 5209596

Browse files
authored
chore: bump deps, move to GitHub Packages (#90)
* chore: bump deps, move to GitHub Packages
1 parent 2c58fa9 commit 5209596

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

.github/workflows/deploy-prod&demo.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
cluster: digdir-fdk-prod
1919
secrets:
2020
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21-
GCP_SA_DIGDIR_FDK_GCR_KEY: ${{ secrets.GCP_SA_DIGDIR_FDK_GCR_KEY }}
2221
DIGDIR_FDK_AUTODEPLOY: ${{ secrets.DIGDIR_FDK_PROD_AUTODEPLOY }}
2322
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
2423

.github/workflows/deploy-staging.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
cluster: digdir-fdk-dev
2020
secrets:
2121
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22-
GCP_SA_DIGDIR_FDK_GCR_KEY: ${{ secrets.GCP_SA_DIGDIR_FDK_GCR_KEY }}
2322
DIGDIR_FDK_AUTODEPLOY: ${{ secrets.DIGDIR_FDK_DEV_AUTODEPLOY }}
2423
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
2524
DEPENDABOT_SLACK_WEBHOOK_URL: ${{ secrets.DEPENDABOT_SLACK_WEBHOOK_URL }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
FROM eclipse-temurin:17-jre-alpine
1+
FROM amazoncorretto:17-alpine
22

33
ENV TZ=Europe/Oslo
44
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
55

66
VOLUME /tmp
77
COPY /target/user-api.jar app.jar
88

9-
CMD java -jar $JAVA_OPTS app.jar
9+
CMD ["sh", "-c", "java -jar $JAVA_OPTS app.jar"]

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<dependency>
6161
<groupId>net.logstash.logback</groupId>
6262
<artifactId>logstash-logback-encoder</artifactId>
63-
<version>7.4</version>
63+
<version>8.0</version>
6464
</dependency>
6565

6666
<!-- Kotlin dependencies -->
@@ -108,7 +108,7 @@
108108
<dependency>
109109
<groupId>org.mockito.kotlin</groupId>
110110
<artifactId>mockito-kotlin</artifactId>
111-
<version>5.3.1</version>
111+
<version>5.4.0</version>
112112
<scope>test</scope>
113113
</dependency>
114114
<dependency>
@@ -120,7 +120,7 @@
120120
<dependency>
121121
<groupId>org.wiremock</groupId>
122122
<artifactId>wiremock-standalone</artifactId>
123-
<version>3.6.0</version>
123+
<version>3.9.2</version>
124124
<scope>test</scope>
125125
</dependency>
126126

@@ -254,7 +254,7 @@
254254
<plugin>
255255
<groupId>org.apache.maven.plugins</groupId>
256256
<artifactId>maven-surefire-plugin</artifactId>
257-
<version>3.2.5</version>
257+
<version>3.5.2</version>
258258
<configuration>
259259
<useSystemClassLoader>false</useSystemClassLoader>
260260
<argLine>${surefire.jacoco.args}</argLine>
@@ -268,7 +268,7 @@
268268
<plugin>
269269
<groupId>org.apache.maven.plugins</groupId>
270270
<artifactId>maven-failsafe-plugin</artifactId>
271-
<version>3.2.5</version>
271+
<version>3.5.2</version>
272272
<configuration>
273273
<argLine>${failsafe.jacoco.args}</argLine>
274274
<groups>contract</groups>

0 commit comments

Comments
 (0)