Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/spring-kafka-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
distribution: [ 'temurin' ]
java: [ '21' ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spring-keycloak-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
distribution: [ 'temurin' ]
java: [ '21' ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spring-prometheus-grafana-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
distribution: [ 'temurin' ]
java: [ '21' ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: true

Expand Down
2 changes: 1 addition & 1 deletion spring-kafka-example/.github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
distribution: [ 'temurin' ]
java: [ '21' ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Java 21
uses: actions/setup-java@v4
Expand Down
2 changes: 1 addition & 1 deletion spring-keycloak-example/.github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
distribution: [ 'temurin' ]
java: [ '21' ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Java 21
uses: actions/setup-java@v4
Expand Down
8 changes: 5 additions & 3 deletions spring-keycloak-example/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ RUN --mount=type=bind,source=pom.xml,target=pom.xml \

FROM eclipse-temurin:21.0.8_9-jre-jammy AS final

RUN apt-get update && apt-get install -y nginx supervisor && rm -rf /var/lib/apt/lists/* #IT IS NOT NECESSARY IN PRODUCTION
COPY docker/nginx/nginx.conf /etc/nginx/nginx.conf #IT IS NOT NECESSARY IN PRODUCTION
COPY docker/nginx/supervisord.conf /etc/supervisor/conf.d/supervisord.conf #IT IS NOT NECESSARY IN PRODUCTION
#<IT IS NOT NECESSARY IN PRODUCTION ---
RUN apt-get update && apt-get install -y nginx supervisor && rm -rf /var/lib/apt/lists/*
COPY docker/nginx/nginx.conf /etc/nginx/nginx.conf
COPY docker/nginx/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
#--- IT IS NOT NECESSARY IN PRODUCTION>

COPY --from=package /build/target/app.jar /app/app.jar

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
distribution: [ 'temurin' ]
java: [ '21' ]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Java 21
uses: actions/setup-java@v4
Expand Down