From 077c67328069121981c00806790cf4319b793e9a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 8 Mar 2023 19:33:00 +0000 Subject: [PATCH 1/5] Update prom/memcached-exporter Docker tag to v0.11.2 --- kubernetes/memcached/memcached-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubernetes/memcached/memcached-deployment.yaml b/kubernetes/memcached/memcached-deployment.yaml index caceafb2e..fc3907f65 100644 --- a/kubernetes/memcached/memcached-deployment.yaml +++ b/kubernetes/memcached/memcached-deployment.yaml @@ -30,7 +30,7 @@ spec: tcpSocket: port: 11211 - name: memcached-exporter - image: prom/memcached-exporter:v0.11.1 + image: prom/memcached-exporter:v0.11.2 ports: - containerPort: 9150 livenessProbe: From c10ab0cb086fbcfd922dcc4512e65696dfa3be0c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 9 Mar 2023 12:39:33 +0000 Subject: [PATCH 2/5] Update dependency actions/cache to v3.3.0 --- .github/workflows/docker-image-ci.yml | 2 +- .github/workflows/java-ci.yml | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docker-image-ci.yml b/.github/workflows/docker-image-ci.yml index 8452f000b..e4a83e811 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 - name: Cache Docker layers - uses: actions/cache@v3.2.6 + uses: actions/cache@v3.3.0 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} diff --git a/.github/workflows/java-ci.yml b/.github/workflows/java-ci.yml index dd0c5c390..3a215e1c5 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.2.6 + uses: actions/cache@v3.3.0 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.2.6 + uses: actions/cache@v3.3.0 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.2.6 + uses: actions/cache@v3.3.0 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.2.6 + uses: actions/cache@v3.3.0 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 - name: Cache Docker layers - uses: actions/cache@v3.2.6 + uses: actions/cache@v3.3.0 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} @@ -168,13 +168,13 @@ jobs: fi - name: Cache SonarCloud packages - uses: actions/cache@v3.2.6 + uses: actions/cache@v3.3.0 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.2.6 + uses: actions/cache@v3.3.0 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 - name: Cache Docker layers - uses: actions/cache@v3.2.6 + uses: actions/cache@v3.3.0 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} @@ -283,13 +283,13 @@ jobs: fi - name: Cache SonarCloud packages - uses: actions/cache@v3.2.6 + uses: actions/cache@v3.3.0 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.2.6 + uses: actions/cache@v3.3.0 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ matrix.application }}-${{ hashFiles('**/${{ matrix.application }}/pom.xml') }} From 7457467bd5af71074569719f9c180b12069ad4bc Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 10 Mar 2023 02:58:03 +0000 Subject: [PATCH 3/5] Update jenkins/jenkins Docker tag to v2.394 --- kubernetes/monitoring/jenkins/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubernetes/monitoring/jenkins/Dockerfile b/kubernetes/monitoring/jenkins/Dockerfile index 332987797..6d3bbe878 100644 --- a/kubernetes/monitoring/jenkins/Dockerfile +++ b/kubernetes/monitoring/jenkins/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/jenkins:2.393-alpine +FROM jenkins/jenkins:2.394-alpine ARG BUILD_DATE ARG VCS_REF From 084a270f18a61eb085cc4bf97a19dfedc9fd42d5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 06:34:46 +0000 Subject: [PATCH 4/5] Update dependency actions/cache to v3.3.1 --- .github/workflows/docker-image-ci.yml | 2 +- .github/workflows/java-ci.yml | 20 ++++++++++---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docker-image-ci.yml b/.github/workflows/docker-image-ci.yml index e4a83e811..315ac805d 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 - name: Cache Docker layers - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} diff --git a/.github/workflows/java-ci.yml b/.github/workflows/java-ci.yml index 3a215e1c5..3fd4fa6c7 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.0 + uses: actions/cache@v3.3.1 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.0 + uses: actions/cache@v3.3.1 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.0 + uses: actions/cache@v3.3.1 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.0 + uses: actions/cache@v3.3.1 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 - name: Cache Docker layers - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 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.0 + uses: actions/cache@v3.3.1 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.0 + uses: actions/cache@v3.3.1 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 - name: Cache Docker layers - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 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.0 + uses: actions/cache@v3.3.1 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.0 + uses: actions/cache@v3.3.1 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ matrix.application }}-${{ hashFiles('**/${{ matrix.application }}/pom.xml') }} From e0e06cd4106d775d2ac825205fa06667e67a2527 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 14 Mar 2023 17:18:11 +0000 Subject: [PATCH 5/5] Update jenkins/jenkins Docker tag to v2.395 --- kubernetes/monitoring/jenkins/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubernetes/monitoring/jenkins/Dockerfile b/kubernetes/monitoring/jenkins/Dockerfile index 6d3bbe878..35134f85f 100644 --- a/kubernetes/monitoring/jenkins/Dockerfile +++ b/kubernetes/monitoring/jenkins/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/jenkins:2.394-alpine +FROM jenkins/jenkins:2.395-alpine ARG BUILD_DATE ARG VCS_REF