From e15cdeadd5c2fe926932f68c6c3284ff236cbbfb Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Mon, 12 Feb 2024 08:36:39 +0100 Subject: [PATCH 01/10] Change code ownership to dev-infra team (#104) --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 5d9f461..604ddbd 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,3 @@ # These owners will be the default owners for everything in the repo and # will be requested for review when someone opens a pull request. -* @swissgrc/platform +* @swissgrc/dev-infra From 112b0595393c49a39ce6522f562ab2e27ccdcb42 Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Mon, 12 Feb 2024 08:46:53 +0100 Subject: [PATCH 02/10] No longer build latest and unstable tag (#103) --- .github/workflows/publish.yml | 4 ++-- README.md | 7 +++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 114690b..bc5f319 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,9 +14,9 @@ jobs: uses: swissgrc/.github/.github/workflows/publish-image.yml@main with: image-name: swissgrc/azure-pipelines-openjdk - default-latest-tag: true + default-latest-tag: false additional-latest-tag-name: 17 - default-unstable-tag: true + default-unstable-tag: false additional-unstable-tag-name: 17-unstable secrets: gh-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 2be33e2..6c68d93 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ The following example shows the container used for a deployment step which shows - stage: deploy jobs: - deployment: runJava - container: swissgrc/azure-pipelines-openjdk:latest + container: swissgrc/azure-pipelines-openjdk:17 environment: smarthotel-dev strategy: runOnce: @@ -35,9 +35,8 @@ The following example shows the container used for a deployment step which shows | Tag | Description | Base Image | OpenJDK | Size | |-------------|-----------------------------------------------------------------------------------------------|----------------------------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------| -| latest | Latest stable release (from `main` branch) | azure-pipelines-dockercli:24.0.7 | 17.0.9.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/latest?style=flat-square) | -| unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/unstable?style=flat-square) | -| 17-unstable | Identical to `unstable` tag | | | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | +| 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:24.0.7 | 17.0.9.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | +| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | | 17.0.4.0 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.3-slim | 17.0.4.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.0?style=flat-square) | | 17.0.4.1 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.5-slim | 17.0.4.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.1?style=flat-square) | | 17.0.5.0 | [OpenJDK 17.0.5](https://foojay.io/java-17/?tab=component&version=17.0.5&quarter=102022) | debian:11.6-slim | 17.0.5.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.5.0?style=flat-square) | From 4eb6dbff14f2519f35f3bba6f141c4869a8415b1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 8 Mar 2024 14:00:00 +0000 Subject: [PATCH 03/10] Update ghcr.io/swissgrc/azure-pipelines-dockercli Docker tag to v25.0.4 (#105) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pascal Berger --- Dockerfile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 081e46e..d403e6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base image containing dependencies used in builder and final image -FROM ghcr.io/swissgrc/azure-pipelines-dockercli:25.0.3 AS base +FROM ghcr.io/swissgrc/azure-pipelines-dockercli:25.0.4 AS base # Make sure to fail due to an error at any stage in shell pipes SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/README.md b/README.md index 6c68d93..ebb29e6 100644 --- a/README.md +++ b/README.md @@ -35,8 +35,8 @@ The following example shows the container used for a deployment step which shows | Tag | Description | Base Image | OpenJDK | Size | |-------------|-----------------------------------------------------------------------------------------------|----------------------------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------| -| 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:24.0.7 | 17.0.9.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | -| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | +| 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | +| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:25.0.4 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | | 17.0.4.0 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.3-slim | 17.0.4.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.0?style=flat-square) | | 17.0.4.1 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.5-slim | 17.0.4.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.1?style=flat-square) | | 17.0.5.0 | [OpenJDK 17.0.5](https://foojay.io/java-17/?tab=component&version=17.0.5&quarter=102022) | debian:11.6-slim | 17.0.5.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.5.0?style=flat-square) | From 360f0a102a800183bddcd0b6df4e9383b5a51e1d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 21 Mar 2024 11:41:52 +0000 Subject: [PATCH 04/10] Update ghcr.io/swissgrc/azure-pipelines-dockercli Docker tag to v26 (#107) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pascal Berger --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d403e6a..7d12951 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base image containing dependencies used in builder and final image -FROM ghcr.io/swissgrc/azure-pipelines-dockercli:25.0.4 AS base +FROM ghcr.io/swissgrc/azure-pipelines-dockercli:26.0.0 AS base # Make sure to fail due to an error at any stage in shell pipes SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/README.md b/README.md index ebb29e6..5427245 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The following example shows the container used for a deployment step which shows | Tag | Description | Base Image | OpenJDK | Size | |-------------|-----------------------------------------------------------------------------------------------|----------------------------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------| | 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | -| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:25.0.4 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | +| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.0.0 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | | 17.0.4.0 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.3-slim | 17.0.4.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.0?style=flat-square) | | 17.0.4.1 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.5-slim | 17.0.4.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.1?style=flat-square) | | 17.0.5.0 | [OpenJDK 17.0.5](https://foojay.io/java-17/?tab=component&version=17.0.5&quarter=102022) | debian:11.6-slim | 17.0.5.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.5.0?style=flat-square) | From 83e1559ca4a8158ca613f75060066980947555b3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 15:36:46 +0000 Subject: [PATCH 05/10] Update ghcr.io/swissgrc/azure-pipelines-dockercli Docker tag to v26.0.1 (#108) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pascal Berger --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7d12951..089f4bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base image containing dependencies used in builder and final image -FROM ghcr.io/swissgrc/azure-pipelines-dockercli:26.0.0 AS base +FROM ghcr.io/swissgrc/azure-pipelines-dockercli:26.0.1 AS base # Make sure to fail due to an error at any stage in shell pipes SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/README.md b/README.md index 5427245..b073ae3 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The following example shows the container used for a deployment step which shows | Tag | Description | Base Image | OpenJDK | Size | |-------------|-----------------------------------------------------------------------------------------------|----------------------------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------| | 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | -| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.0.0 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | +| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.0.1 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | | 17.0.4.0 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.3-slim | 17.0.4.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.0?style=flat-square) | | 17.0.4.1 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.5-slim | 17.0.4.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.1?style=flat-square) | | 17.0.5.0 | [OpenJDK 17.0.5](https://foojay.io/java-17/?tab=component&version=17.0.5&quarter=102022) | debian:11.6-slim | 17.0.5.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.5.0?style=flat-square) | From 3f152eec1d4fda0e80f004d9deb2390f1ba9d433 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 19:50:07 +0000 Subject: [PATCH 06/10] Update ghcr.io/swissgrc/azure-pipelines-dockercli Docker tag to v26.0.2 (#110) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pascal Berger --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 089f4bc..0047cb5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base image containing dependencies used in builder and final image -FROM ghcr.io/swissgrc/azure-pipelines-dockercli:26.0.1 AS base +FROM ghcr.io/swissgrc/azure-pipelines-dockercli:26.0.2 AS base # Make sure to fail due to an error at any stage in shell pipes SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/README.md b/README.md index b073ae3..ff8dfd3 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The following example shows the container used for a deployment step which shows | Tag | Description | Base Image | OpenJDK | Size | |-------------|-----------------------------------------------------------------------------------------------|----------------------------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------| | 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | -| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.0.1 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | +| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.0.2 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | | 17.0.4.0 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.3-slim | 17.0.4.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.0?style=flat-square) | | 17.0.4.1 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.5-slim | 17.0.4.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.1?style=flat-square) | | 17.0.5.0 | [OpenJDK 17.0.5](https://foojay.io/java-17/?tab=component&version=17.0.5&quarter=102022) | debian:11.6-slim | 17.0.5.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.5.0?style=flat-square) | From 8fa979eb569cfb5b6dc6c5ec5c6d8e2d0f718e4f Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 07:10:01 +0000 Subject: [PATCH 07/10] Update ghcr.io/swissgrc/azure-pipelines-dockercli Docker tag to v26.1.0 (#111) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pascal Berger --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0047cb5..f1a79ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base image containing dependencies used in builder and final image -FROM ghcr.io/swissgrc/azure-pipelines-dockercli:26.0.2 AS base +FROM ghcr.io/swissgrc/azure-pipelines-dockercli:26.1.0 AS base # Make sure to fail due to an error at any stage in shell pipes SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/README.md b/README.md index ff8dfd3..e5f4012 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The following example shows the container used for a deployment step which shows | Tag | Description | Base Image | OpenJDK | Size | |-------------|-----------------------------------------------------------------------------------------------|----------------------------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------| | 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | -| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.0.2 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | +| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.1.0 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | | 17.0.4.0 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.3-slim | 17.0.4.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.0?style=flat-square) | | 17.0.4.1 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.5-slim | 17.0.4.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.1?style=flat-square) | | 17.0.5.0 | [OpenJDK 17.0.5](https://foojay.io/java-17/?tab=component&version=17.0.5&quarter=102022) | debian:11.6-slim | 17.0.5.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.5.0?style=flat-square) | From 5abf65fc5bb55a4c27ebcdee121cf34d449343e1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 05:23:43 +0000 Subject: [PATCH 08/10] Update ghcr.io/swissgrc/azure-pipelines-dockercli Docker tag to v26.1.1 (#112) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pascal Berger --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f1a79ef..d1af6fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Base image containing dependencies used in builder and final image -FROM ghcr.io/swissgrc/azure-pipelines-dockercli:26.1.0 AS base +FROM ghcr.io/swissgrc/azure-pipelines-dockercli:26.1.1 AS base # Make sure to fail due to an error at any stage in shell pipes SHELL ["/bin/bash", "-o", "pipefail", "-c"] diff --git a/README.md b/README.md index e5f4012..860521f 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The following example shows the container used for a deployment step which shows | Tag | Description | Base Image | OpenJDK | Size | |-------------|-----------------------------------------------------------------------------------------------|----------------------------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------| | 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | -| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.1.0 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | +| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.1.1 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | | 17.0.4.0 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.3-slim | 17.0.4.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.0?style=flat-square) | | 17.0.4.1 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.5-slim | 17.0.4.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.1?style=flat-square) | | 17.0.5.0 | [OpenJDK 17.0.5](https://foojay.io/java-17/?tab=component&version=17.0.5&quarter=102022) | debian:11.6-slim | 17.0.5.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.5.0?style=flat-square) | From 3987e693f9a4a7bf70c9d9c09a50ac77adaa7eb5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 3 May 2024 05:31:29 +0000 Subject: [PATCH 09/10] Update dependency java-jdk to v17.0.11+9 (#109) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Pascal Berger --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d1af6fb..f6b7015 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ COPY --from=build /etc/apt/sources.list.d/ /etc/apt/sources.list.d # Install OpenJDK # renovate: datasource=adoptium-java depName=java-jdk versioning=loose -ENV OPENJDK_VERSION=17.0.10.0.0+7 +ENV OPENJDK_VERSION=17.0.11.0.0+9 # Install OpenJDK RUN apt-get update -y && \ diff --git a/README.md b/README.md index 860521f..b4ad74d 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The following example shows the container used for a deployment step which shows | Tag | Description | Base Image | OpenJDK | Size | |-------------|-----------------------------------------------------------------------------------------------|----------------------------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------| | 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | -| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.1.1 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | +| 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.1.1 | 17.0.11.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | | 17.0.4.0 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.3-slim | 17.0.4.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.0?style=flat-square) | | 17.0.4.1 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.5-slim | 17.0.4.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.1?style=flat-square) | | 17.0.5.0 | [OpenJDK 17.0.5](https://foojay.io/java-17/?tab=component&version=17.0.5&quarter=102022) | debian:11.6-slim | 17.0.5.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.5.0?style=flat-square) | From eb615389ffa92e4622c55e91f00ecf24cbf277b9 Mon Sep 17 00:00:00 2001 From: Pascal Berger Date: Fri, 3 May 2024 07:35:21 +0200 Subject: [PATCH 10/10] Update README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b4ad74d..f8694b5 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ The following example shows the container used for a deployment step which shows | Tag | Description | Base Image | OpenJDK | Size | |-------------|-----------------------------------------------------------------------------------------------|----------------------------------|-----------|-------------------------------------------------------------------------------------------------------------------------------------| -| 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | +| 17 | Latest stable release (from `main` branch) | azure-pipelines-dockercli:26.1.1 | 17.0.11.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17?style=flat-square) | | 17-unstable | Latest unstable release (from `develop` branch) | azure-pipelines-dockercli:26.1.1 | 17.0.11.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17-unstable?style=flat-square) | | 17.0.4.0 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.3-slim | 17.0.4.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.0?style=flat-square) | | 17.0.4.1 | [OpenJDK 17.0.4](https://foojay.io/java-17/?tab=component&version=17.0.4&quarter=072022) | debian:11.5-slim | 17.0.4.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.4.1?style=flat-square) | @@ -46,6 +46,7 @@ The following example shows the container used for a deployment step which shows | 17.0.8.1 | [OpenJDK 17.0.8](https://foojay.io/java-17/?version=17.0.8&quarter=072023) | azure-pipelines-dockercli:24.0.5 | 17.0.8.1 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.8.1?style=flat-square) | | 17.0.9.0 | [OpenJDK 17.0.9](https://adoptium.net/temurin/release-notes/?version=jdk-17.0.9+9) | azure-pipelines-dockercli:24.0.7 | 17.0.9.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.9.0?style=flat-square) | | 17.0.10.0 | [OpenJDK 17.0.10](https://adoptium.net/temurin/release-notes/?version=jdk-17.0.10+7) | azure-pipelines-dockercli:25.0.3 | 17.0.10.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.10.0?style=flat-square) | +| 17.0.11.0 | [OpenJDK 17.0.11](https://adoptium.net/temurin/release-notes/?version=jdk-17.0.11+9) | azure-pipelines-dockercli:26.1.1 | 17.0.11.0 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-openjdk/17.0.11.0?style=flat-square) | ### Configuration