We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d23787 commit 827ffb5Copy full SHA for 827ffb5
2 files changed
.github/workflows/publish-docker-image-prod.yml
@@ -11,10 +11,10 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- name: Check out the repo
14
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
15
16
- name: Log in to Docker Hub
17
- uses: docker/login-action@v2
+ uses: docker/login-action@v3
18
with:
19
username: ${{ secrets.DOCKER_USERNAME }}
20
password: ${{ secrets.DOCKER_PASSWORD }}
@@ -30,7 +30,7 @@ jobs:
30
type=sha
31
32
- name: Build and push Docker image
33
- uses: docker/build-push-action@v4
+ uses: docker/build-push-action@v6
34
35
context: .
36
push: true
Dockerfile
@@ -4,7 +4,7 @@
4
FROM maven:3.9.6-eclipse-temurin-17 as build
5
WORKDIR /app
6
COPY . .
7
-RUN mvn package
+RUN mvn package -DskipTests
8
9
# Stage 2: Copy war
10
FROM eclipse-temurin:17
0 commit comments