diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 214d29195..4b08df370 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -17,4 +17,4 @@ jobs: - name: 'Checkout Repository' uses: actions/checkout@v3.6.0 - name: 'Dependency Review' - uses: actions/dependency-review-action@v3.1.5 + uses: actions/dependency-review-action@v4.3.4 diff --git a/.github/workflows/docker-image-ci.yml b/.github/workflows/docker-image-ci.yml index 7463a5193..d2efc0b44 100644 --- a/.github/workflows/docker-image-ci.yml +++ b/.github/workflows/docker-image-ci.yml @@ -27,7 +27,7 @@ jobs: uses: docker/setup-buildx-action@v2.10.0 - name: Cache Docker layers - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} @@ -72,7 +72,7 @@ jobs: - name: Run Snyk to check Docker image for vulnerabilities - nginx continue-on-error: true - uses: snyk/actions/docker@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/docker@cdb760004ba9ea4d525f2e043745dfe85bb9077e env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: @@ -95,7 +95,7 @@ jobs: - name: Run Snyk to check Docker image for vulnerabilities - mysql continue-on-error: true - uses: snyk/actions/docker@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/docker@cdb760004ba9ea4d525f2e043745dfe85bb9077e env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: @@ -118,7 +118,7 @@ jobs: - name: Run Snyk to check Docker image for vulnerabilities - postgres continue-on-error: true - uses: snyk/actions/docker@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/docker@cdb760004ba9ea4d525f2e043745dfe85bb9077e env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: @@ -141,7 +141,7 @@ jobs: - name: Run Snyk to check Docker image for vulnerabilities - mongodb continue-on-error: true - uses: snyk/actions/docker@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/docker@cdb760004ba9ea4d525f2e043745dfe85bb9077e env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: @@ -164,7 +164,7 @@ jobs: - name: Run Snyk to check Docker image for vulnerabilities - cassandra continue-on-error: true - uses: snyk/actions/docker@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/docker@cdb760004ba9ea4d525f2e043745dfe85bb9077e env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: @@ -187,7 +187,7 @@ jobs: - name: Run Snyk to check Docker image for vulnerabilities - rabbitmq continue-on-error: true - uses: snyk/actions/docker@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/docker@cdb760004ba9ea4d525f2e043745dfe85bb9077e env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: @@ -222,7 +222,7 @@ jobs: - name: Run Snyk to check Docker image for vulnerabilities - ab continue-on-error: true - uses: snyk/actions/docker@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/docker@cdb760004ba9ea4d525f2e043745dfe85bb9077e env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: @@ -245,7 +245,7 @@ jobs: - name: Run Snyk to check Docker image for vulnerabilities - postmannewman-quarkus continue-on-error: true - uses: snyk/actions/docker@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/docker@cdb760004ba9ea4d525f2e043745dfe85bb9077e env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} with: diff --git a/.github/workflows/issue_opened.yml b/.github/workflows/issue_opened.yml index 8fdb50f96..7c5728b0d 100644 --- a/.github/workflows/issue_opened.yml +++ b/.github/workflows/issue_opened.yml @@ -9,10 +9,11 @@ env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: - assign: + add-to-project: + name: Add issue to project runs-on: ubuntu-latest steps: - - name: Assign issues to project - uses: srggrs/assign-one-project-github-action@1.3.1 + - uses: actions/add-to-project@v1.0.2 with: - project: 'https://github.com/yurake/k8s-3tier-webapp/projects/1' + project-url: https://github.com/users/yurake/projects/1/views/1 + github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/java-ci.yml b/.github/workflows/java-ci.yml index 23da9744b..05edb73cd 100644 --- a/.github/workflows/java-ci.yml +++ b/.github/workflows/java-ci.yml @@ -37,13 +37,13 @@ jobs: languages: java - name: Cache SonarCloud packages - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-parent-pom restore-keys: ${{ runner.os }}-sonar-parent-pom - name: Cache local Maven repository - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-parent-pom-${{ hashFiles('**/parent-pom/pom.xml') }} @@ -56,13 +56,13 @@ jobs: run: ./mvnw -B deploy --settings ../.m2/settings.xml - name: Cache SonarCloud packages - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-webapp-service restore-keys: ${{ runner.os }}-sonar-webapp-service - name: Cache local Maven repository - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-webapp-service-${{ hashFiles('**/webapp-service/pom.xml') }} @@ -151,7 +151,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2.10.0 - name: Cache Docker layers - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} @@ -168,13 +168,13 @@ jobs: fi - name: Cache SonarCloud packages - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-${{ matrix.application }} restore-keys: ${{ runner.os }}-sonar-${{ matrix.application }} - name: Cache local Maven repository - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ matrix.application }}-${{ hashFiles('**/${{ matrix.application }}/pom.xml') }} @@ -266,7 +266,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2.10.0 - name: Cache Docker layers - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} @@ -283,13 +283,13 @@ jobs: fi - name: Cache SonarCloud packages - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-${{ matrix.application }} restore-keys: ${{ runner.os }}-sonar-${{ matrix.application }} - name: Cache local Maven repository - uses: actions/cache@v3.3.3 + uses: actions/cache@v4.0.2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ matrix.application }}-${{ hashFiles('**/${{ matrix.application }}/pom.xml') }} diff --git a/.github/workflows/kind-chaos-mesh-ci.yml b/.github/workflows/kind-chaos-mesh-ci.yml index 4ecf7b56d..3249d75b9 100644 --- a/.github/workflows/kind-chaos-mesh-ci.yml +++ b/.github/workflows/kind-chaos-mesh-ci.yml @@ -13,7 +13,7 @@ on: - ".github/workflows/kind-chaos-mesh-ci.yml" env: - CHAOS_MESH_VERSION: 2.6.1 + CHAOS_MESH_VERSION: 2.6.2 jobs: chaos-mesh-ci: diff --git a/.github/workflows/pmd.yml b/.github/workflows/pmd.yml index f403e5ccf..2b806f472 100644 --- a/.github/workflows/pmd.yml +++ b/.github/workflows/pmd.yml @@ -63,7 +63,7 @@ jobs: steps: - uses: actions/checkout@v3.6.0 - name: Set up JDK - uses: actions/setup-java@v3.13.0 + uses: actions/setup-java@v4.3.0 with: java-version: "17" distribution: "temurin" diff --git a/.github/workflows/snyk-infrastructure.yml b/.github/workflows/snyk-infrastructure.yml index 4447be92c..8bb8abd3f 100644 --- a/.github/workflows/snyk-infrastructure.yml +++ b/.github/workflows/snyk-infrastructure.yml @@ -32,7 +32,7 @@ jobs: steps: - uses: actions/checkout@v3.6.0 - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/iac@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/iac@cdb760004ba9ea4d525f2e043745dfe85bb9077e continue-on-error: true env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} @@ -51,7 +51,7 @@ jobs: steps: - uses: actions/checkout@master - name: Run Snyk to check for vulnerabilities - uses: snyk/actions/iac@640e31719aac3e44867d239dc86c20c3e34c8e4f + uses: snyk/actions/iac@cdb760004ba9ea4d525f2e043745dfe85bb9077e continue-on-error: true env: SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} diff --git a/README.md b/README.md index e72e9ba7b..be8ae848d 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,6 @@ Sample web application based on k8s. Focus on connecting components, setting k8s [![CodeFactor](https://www.codefactor.io/repository/github/yurake/k8s-3tier-webapp/badge)](https://www.codefactor.io/repository/github/yurake/k8s-3tier-webapp) [![Maintainability](https://api.codeclimate.com/v1/badges/64a1de96c5eb777b9db1/maintainability)](https://codeclimate.com/github/yurake/k8s-3tier-webapp/maintainability) [![codebeat badge](https://codebeat.co/badges/e0bfc464-3370-467d-910f-ade9d83265b1)](https://codebeat.co/projects/github-com-yurake-k8s-3tier-webapp-master) [![codecov](https://codecov.io/gh/yurake/k8s-3tier-webapp/branch/master/graph/badge.svg)](https://codecov.io/gh/yurake/k8s-3tier-webapp) -[![Codiga Code Quality Score](https://api.codiga.io/project/34687/score/svg)](https://app.codiga.io) -[![Codiga Code Grade](https://api.codiga.io/project/34687/status/svg)](https://app.codiga.io) [![DeepSource Active Issues](https://deepsource.io/gh/yurake/k8s-3tier-webapp.svg/?label=active+issues\&show_trend=true\&token=Y64jIS9a54isgV4hi4_uuerZ)](https://deepsource.io/gh/yurake/k8s-3tier-webapp/?ref=repository-badge) [![DeepSource Resluved Issues](https://deepsource.io/gh/yurake/k8s-3tier-webapp.svg/?label=resolved+issues\&show_trend=true\&token=Y64jIS9a54isgV4hi4_uuerZ)](https://deepsource.io/gh/yurake/k8s-3tier-webapp/?ref=repository-badge) [![Cypress](https://img.shields.io/endpoint?url=https://dashboard.cypress.io/badge/detailed/7rgxn6/master\&style=flat\&logo=cypress)](https://dashboard.cypress.io/projects/7rgxn6/runs) @@ -41,7 +39,7 @@ Sample web application based on k8s. Focus on connecting components, setting k8s [![Support Quarkus Version](https://img.shields.io/badge/Quarkus-2.16.8-yellow.svg?style=flat\&logo=Quarkus)](https://github.com/yurake/k8s-3tier-webapp/actions?query=workflow%3A%22Java+CI%22) [![Support Kubernetes Version](https://img.shields.io/badge/Kubernetes-1.27.3-yellow.svg?style=flat\&logo=Kubernetes)](https://github.com/yurake/k8s-3tier-webapp/actions?query=workflow%3A%22Minikube+CI%22) [![Support Minikube Version](https://img.shields.io/badge/Minikube-1.30.1-yellow.svg?style=flat\&logo=Kubernetes)](https://github.com/yurake/k8s-3tier-webapp/actions?query=workflow%3A%22Minikube+CI%22) -[![Support kind Version](https://img.shields.io/badge/kind-2.6.1-yellow.svg?style=flat\&logo=Kubernetes)](https://github.com/yurake/k8s-3tier-webapp/actions?query=workflow%3A%22kind+CI%22) +[![Support kind Version](https://img.shields.io/badge/kind-2.6.2-yellow.svg?style=flat\&logo=Kubernetes)](https://github.com/yurake/k8s-3tier-webapp/actions?query=workflow%3A%22kind+CI%22) [![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE/) [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fyurake%2Fk8s-3tier-webapp.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fyurake%2Fk8s-3tier-webapp?ref=badge_shield) diff --git a/application/consumer-activemq-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/consumer-activemq-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/consumer-activemq-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/consumer-activemq-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/consumer-hazelcast-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/consumer-hazelcast-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/consumer-hazelcast-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/consumer-hazelcast-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/consumer-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/consumer-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/consumer-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/consumer-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/consumer-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/consumer-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/consumer-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/consumer-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/consumer-redis-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/consumer-redis-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/consumer-redis-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/consumer-redis-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/converter-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/converter-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/converter-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/converter-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/converter-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/converter-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/converter-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/converter-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-activemq-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-activemq-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-activemq-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-activemq-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-cassandra-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-cassandra-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-cassandra-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-cassandra-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-grpc-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-grpc-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-grpc-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-grpc-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-hazelcast-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-hazelcast-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-hazelcast-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-hazelcast-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-memcached-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-memcached-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-memcached-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-memcached-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-mongodb-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-mongodb-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-mongodb-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-mongodb-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-mysql-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-mysql-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-mysql-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-mysql-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-postgres-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-postgres-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-postgres-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-postgres-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-rabbitmq-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/jaxrs-redis-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/jaxrs-redis-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/jaxrs-redis-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/jaxrs-redis-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/parent-pom/.mvn/wrapper/maven-wrapper.properties b/application/parent-pom/.mvn/wrapper/maven-wrapper.properties index f95f1ee80..d58dfb70b 100644 --- a/application/parent-pom/.mvn/wrapper/maven-wrapper.properties +++ b/application/parent-pom/.mvn/wrapper/maven-wrapper.properties @@ -16,4 +16,4 @@ # under the License. wrapperVersion=3.3.2 distributionType=only-script -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip diff --git a/application/producer-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/producer-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/producer-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/producer-kafka-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/randompublish-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/randompublish-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/randompublish-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/randompublish-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/scheduled-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/scheduled-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/scheduled-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/scheduled-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/server-grpc-quarkus/.mvn/wrapper/maven-wrapper.properties b/application/server-grpc-quarkus/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/server-grpc-quarkus/.mvn/wrapper/maven-wrapper.properties +++ b/application/server-grpc-quarkus/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/application/webapp-service/.mvn/wrapper/maven-wrapper.properties b/application/webapp-service/.mvn/wrapper/maven-wrapper.properties index b2d00461c..b9b1153ae 100644 --- a/application/webapp-service/.mvn/wrapper/maven-wrapper.properties +++ b/application/webapp-service/.mvn/wrapper/maven-wrapper.properties @@ -14,5 +14,5 @@ # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. -distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.8/apache-maven-3.9.8-bin.zip +distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.9/apache-maven-3.9.9-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.2/maven-wrapper-3.3.2.jar diff --git a/kubernetes/cassandra/Dockerfile b/kubernetes/cassandra/Dockerfile index 1633b49cc..ea9a352f1 100644 --- a/kubernetes/cassandra/Dockerfile +++ b/kubernetes/cassandra/Dockerfile @@ -1,4 +1,4 @@ -FROM cassandra:4.1 +FROM cassandra:5.0 ARG BUILD_DATE ARG VCS_REF LABEL org.label-schema.build-date=$BUILD_DATE org.label-schema.vcs-ref=$VCS_REF \ diff --git a/kubernetes/monitoring/grafana/grafana-deployment.yaml b/kubernetes/monitoring/grafana/grafana-deployment.yaml index ff2f7e7bb..ecf749599 100644 --- a/kubernetes/monitoring/grafana/grafana-deployment.yaml +++ b/kubernetes/monitoring/grafana/grafana-deployment.yaml @@ -19,7 +19,7 @@ spec: spec: containers: - name: grafana - image: grafana/grafana:10.4.5 + image: grafana/grafana:10.4.8 imagePullPolicy: Always ports: - containerPort: 3000 diff --git a/kubernetes/nginx/Dockerfile b/kubernetes/nginx/Dockerfile index 26411588b..8ddc0c125 100644 --- a/kubernetes/nginx/Dockerfile +++ b/kubernetes/nginx/Dockerfile @@ -1,4 +1,4 @@ -FROM nginx:1.27.0 +FROM nginx:1.27.1 ENV TZ Asia/Tokyo ARG BUILD_DATE ARG VCS_REF diff --git a/kubernetes/postgres/Dockerfile b/kubernetes/postgres/Dockerfile index 941129d16..78a30c7b6 100644 --- a/kubernetes/postgres/Dockerfile +++ b/kubernetes/postgres/Dockerfile @@ -1,4 +1,4 @@ -FROM postgres:15.7-alpine +FROM postgres:15.8-alpine ARG BUILD_DATE ARG VCS_REF LABEL org.label-schema.build-date=$BUILD_DATE org.label-schema.vcs-ref=$VCS_REF \ diff --git a/kubernetes/zookeeper/zookeeper-statefulset.yaml b/kubernetes/zookeeper/zookeeper-statefulset.yaml index 944fe2829..ee786ea95 100644 --- a/kubernetes/zookeeper/zookeeper-statefulset.yaml +++ b/kubernetes/zookeeper/zookeeper-statefulset.yaml @@ -21,7 +21,7 @@ spec: spec: containers: - name: zookeeper - image: bitnami/zookeeper:3.9.2-debian-12-r9 + image: bitnami/zookeeper:3.9.2-debian-12-r14 imagePullPolicy: Always ports: - containerPort: 2181