Skip to content

Commit 0e5a95f

Browse files
Merge pull request #48 from igorcampos-dev/renovate/actions-checkout-5.x
chore(deps): update actions/checkout action to v5
2 parents 52fc679 + 673fa63 commit 0e5a95f

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

.github/workflows/spring-kafka-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
distribution: [ 'temurin' ]
2424
java: [ '21' ]
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929

@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout repository and submodules
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
submodules: true
4747

.github/workflows/spring-keycloak-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
distribution: [ 'temurin' ]
2424
java: [ '21' ]
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929

@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout repository and submodules
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
submodules: true
4747

.github/workflows/spring-prometheus-grafana-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
distribution: [ 'temurin' ]
2424
java: [ '21' ]
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929

@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout repository and submodules
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
with:
4646
submodules: true
4747

spring-kafka-example/.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
distribution: [ 'temurin' ]
1515
java: [ '21' ]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Setup Java 21
2020
uses: actions/setup-java@v4

spring-keycloak-example/.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
distribution: [ 'temurin' ]
1515
java: [ '21' ]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Setup Java 21
2020
uses: actions/setup-java@v4

spring-keycloak-example/Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ RUN --mount=type=bind,source=pom.xml,target=pom.xml \
2020

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

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

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

spring-prometheus-grafana-example/.github/workflows/maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
distribution: [ 'temurin' ]
1515
java: [ '21' ]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v5
1818

1919
- name: Setup Java 21
2020
uses: actions/setup-java@v4

0 commit comments

Comments
 (0)