Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Java 11 images on weekly release line #1891

Merged
merged 3 commits into from
Jun 13, 2024

Conversation

lemeurherve
Copy link
Member

@lemeurherve lemeurherve commented Jun 10, 2024

This PR removes the Java 11 images from the weekly release line by using new images definitions containing Java 11 for LTS release line until Java 17 is required on every lines. ("linux-lts-with-jdk11" docker bake target & "build-windows-lts-with-jdk11.yaml" docker compose file)
See 97c732b

It also add a mechanism to easily simulate a LTS build on ci.jenkins.io (with images publication disabled out of caution even if it happens on trusted.ci.jenkins.io) by setting in a replay SIMULATE_LTS_BUILD to true.
See dcbd563?w=1

We can remove this code after Java 11 EOL.

Notes:

Fixes:

Testing done

Local tests

.ci/publis.sh
$ JENKINS_VERSION=2.442 make publish
./.ci/publish.sh
Using the following settings:
* JENKINS_REPO: jenkins/jenkins
* JENKINS_VERSION: 2.442
* JENKINS_SHA: b0bc35b59ca923629cc440d79bebfa78d67cd0448c7a485168fc2719ac445e7b
* COMMIT_SHA: dbc09a35f9008b00ed98e23de8a7598c5e1cb074
* LATEST_WEEKLY: false
* LATEST_LTS: false
* TARGET: linux
#0 building with "desktop-linux" instance using docker driver
<...>

$ JENKINS_VERSION=2.452.1 make publish 
./.ci/publish.sh
Using the following settings:
* JENKINS_REPO: jenkins/jenkins
* JENKINS_VERSION: 2.452.1
* JENKINS_SHA: d9ec867a35987b545c82ed0df5d2240ac208a8d06e065e9cdb869464f3b87a56
* COMMIT_SHA: dbc09a35f9008b00ed98e23de8a7598c5e1cb074
* LATEST_WEEKLY: false
* LATEST_LTS: true
* TARGET: linux-lts-with-jdk11
#0 building with "desktop-linux" instance using docker driver
<...>
"list" make function used by other make targets
With the same main architecture as agents:
$ ARCH=amd64 TARGET=linux make list 
+ make --silent show
+ jq -r '.target | path(.. | select(.platforms[] | contains("linux/amd64"))?) | add'
#1 [internal] load local bake definitions
#1 reading docker-bake.hcl 10.42kB / 10.42kB done
#1 DONE 0.0s
alpine_jdk17
alpine_jdk21
debian_jdk17
debian_jdk21
debian_slim_jdk17
debian_slim_jdk21
rhel_ubi9_jdk17
rhel_ubi9_jdk21


$ ARCH=amd64 TARGET=linux-lts-with-jdk11 make list                              
+ make --silent show
+ jq -r '.target | path(.. | select(.platforms[] | contains("linux/amd64"))?) | add'
#1 [internal] load local bake definitions
#1 reading docker-bake.hcl 10.42kB / 10.42kB done
#1 DONE 0.0s
almalinux_jdk11
alpine_jdk21
debian_jdk11
debian_jdk17
debian_jdk21
debian_slim_jdk21
rhel_ubi8_jdk11
rhel_ubi9_jdk17
rhel_ubi9_jdk21
Build tests depending on the bake target
With second call failing as expected:
$ ARCH=amd64 TARGET=linux-lts-with-jdk11 make build-debian_jdk11
<build logs OK>

$ ARCH=amd64 TARGET=linux make build-debian_jdk11
+ make --silent show
+ jq -r '.target | path(.. | select(.platforms[] | contains("linux/amd64"))?) | add'
#1 [internal] load local bake definitions
#1 reading docker-bake.hcl 10.42kB / 10.42kB done
#1 DONE 0.0s
Error: the image 'debian_jdk11' does not exist in manifest for the platform 'linux/amd64'. Please check the output of 'make list'. Exiting.

$ ARCH=amd64 TARGET=linux-lts-with-jdk11 make build-debian_jdk17
<build logs OK>

$ ARCH=arm64 TARGET=linux-lts-with-jdk11 make build-debian_jdk17
<build logs OK>

$ ARCH=amd64 TARGET=linux make build-debian_jdk17
<build logs OK>

$ ARCH=ard64 TARGET=linux make build-debian_jdk17
<build logs OK>
make.ps1
$ pwsh make.ps1 -JenkinsVersion 2.442 -DryRun
= PREPARE: List of jenkins4eval/jenkins images and tags to be processed:
name: jenkinsci-docker
services:
  jdk17:
    build:
      context: /Users/veve/j-infra/jenkinsci-docker
      dockerfile: ./windows/windowsservercore/hotspot/Dockerfile
      args:
        COMMIT_SHA: dcbd563bad436ccdbae596cd68acfdb36548ed59
        JAVA_HOME: C:/openjdk-17
        JAVA_VERSION: 17.0.11_9
        JENKINS_SHA: B0BC35B59CA923629CC440D79BEBFA78D67CD0448C7A485168FC2719AC445E7B
        JENKINS_VERSION: "2.442"
        TOOLS_WINDOWS_VERSION: "1809"
        WINDOWS_VERSION: ltsc2019
      tags:
        - jenkins4eval/jenkins:2.442-jdk17-hotspot-windowsservercore-ltsc2019
        - jenkins4eval/jenkins:2.442-windowsservercore-ltsc2019
        - jenkins4eval/jenkins:windowsservercore-ltsc2019
    image: jenkins4eval/jenkins:jdk17-hotspot-windowsservercore-ltsc2019
    networks:
      default: null
  jdk21:
    build:
      context: /Users/veve/j-infra/jenkinsci-docker
      dockerfile: ./windows/windowsservercore/hotspot/Dockerfile
      args:
        COMMIT_SHA: dcbd563bad436ccdbae596cd68acfdb36548ed59
        JAVA_HOME: C:/openjdk-21
        JAVA_VERSION: 21.0.3_9
        JENKINS_SHA: B0BC35B59CA923629CC440D79BEBFA78D67CD0448C7A485168FC2719AC445E7B
        JENKINS_VERSION: "2.442"
        TOOLS_WINDOWS_VERSION: "1809"
        WINDOWS_VERSION: ltsc2019
      tags:
        - jenkins4eval/jenkins:2.442-jdk21-hotspot-windowsservercore-ltsc2019
        - jenkins4eval/jenkins:2.442-windowsservercore-ltsc2019
        - jenkins4eval/jenkins:windowsservercore-ltsc2019
    image: jenkins4eval/jenkins:jdk21-hotspot-windowsservercore-ltsc2019
    networks:
      default: null
networks:
  default:
    name: jenkinsci-docker_default
= BUILD: Building all images...
(dry-run) docker-compose --file=build-windows.yaml build --parallel --pull
= BUILD: Finished building all images.
Build finished successfully
$ pwsh make.ps1 -JenkinsVersion 2.452.1 -DryRun
= PREPARE: List of jenkins4eval/jenkins images and tags to be processed:
name: jenkinsci-docker
services:
  jdk11:
    build:
      context: /Users/veve/j-infra/jenkinsci-docker
      dockerfile: ./windows/windowsservercore/hotspot/Dockerfile
      args:
        COMMIT_SHA: dcbd563bad436ccdbae596cd68acfdb36548ed59
        JAVA_HOME: C:/openjdk-11
        JAVA_VERSION: 11.0.23_9
        JENKINS_SHA: D9EC867A35987B545C82ED0DF5D2240AC208A8D06E065E9CDB869464F3B87A56
        JENKINS_VERSION: 2.452.1
        TOOLS_WINDOWS_VERSION: "1809"
        WINDOWS_VERSION: ltsc2019
      tags:
        - jenkins4eval/jenkins:2.452.1-jdk11-hotspot-windowsservercore-ltsc2019
    image: jenkins4eval/jenkins:lts-jdk11-hotspot-windowsservercore-ltsc2019
    networks:
      default: null
  jdk17:
    build:
      context: /Users/veve/j-infra/jenkinsci-docker
      dockerfile: ./windows/windowsservercore/hotspot/Dockerfile
      args:
        COMMIT_SHA: dcbd563bad436ccdbae596cd68acfdb36548ed59
        JAVA_HOME: C:/openjdk-17
        JAVA_VERSION: 17.0.11_9
        JENKINS_SHA: D9EC867A35987B545C82ED0DF5D2240AC208A8D06E065E9CDB869464F3B87A56
        JENKINS_VERSION: 2.452.1
        TOOLS_WINDOWS_VERSION: "1809"
        WINDOWS_VERSION: ltsc2019
      tags:
        - jenkins4eval/jenkins:2.452.1-jdk17-hotspot-windowsservercore-ltsc2019
        - jenkins4eval/jenkins:2.452.1-windowsservercore-ltsc2019
        - jenkins4eval/jenkins:lts-windowsservercore-ltsc2019
    image: jenkins4eval/jenkins:lts-jdk17-hotspot-windowsservercore-ltsc2019
    networks:
      default: null
  jdk21:
    build:
      context: /Users/veve/j-infra/jenkinsci-docker
      dockerfile: ./windows/windowsservercore/hotspot/Dockerfile
      args:
        COMMIT_SHA: dcbd563bad436ccdbae596cd68acfdb36548ed59
        JAVA_HOME: C:/openjdk-21
        JAVA_VERSION: 21.0.3_9
        JENKINS_SHA: D9EC867A35987B545C82ED0DF5D2240AC208A8D06E065E9CDB869464F3B87A56
        JENKINS_VERSION: 2.452.1
        TOOLS_WINDOWS_VERSION: "1809"
        WINDOWS_VERSION: ltsc2019
      tags:
        - jenkins4eval/jenkins:2.452.1-jdk21-hotspot-windowsservercore-ltsc2019
        - jenkins4eval/jenkins:2.452.1-windowsservercore-ltsc2019
        - jenkins4eval/jenkins:lts-windowsservercore-ltsc2019
    image: jenkins4eval/jenkins:lts-jdk21-hotspot-windowsservercore-ltsc2019
    networks:
      default: null
networks:
  default:
    name: jenkinsci-docker_default
= BUILD: Building all images...
(dry-run) docker-compose --file=build-windows-lts-with-jdk11.yaml build --parallel --pull
= BUILD: Finished building all images.
Build finished successfully

On ci.jenkins.io

Submitter checklist

  • Make sure you are opening from a topic/feature/bugfix branch (right side) and not your main branch!
  • Ensure that the pull request title represents the desired changelog entry
  • Please describe what you did
  • Link to relevant issues in GitHub or Jira
  • Link to relevant pull requests, esp. upstream and downstream changes
  • Ensure you have provided tests - that demonstrates feature works or fixes the issue

@lemeurherve lemeurherve force-pushed the issue1890-remove-java11 branch 3 times, most recently from 412e85d to dbc09a3 Compare June 11, 2024 19:20
@lemeurherve lemeurherve marked this pull request as ready for review June 12, 2024 21:55
@lemeurherve lemeurherve requested a review from a team as a code owner June 12, 2024 21:55
Jenkinsfile Outdated Show resolved Hide resolved
Copy link
Contributor

@dduportal dduportal left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Many thanks!

This changes looks thoroughly tested, many thanks for this effort!

LGTM 🚀

Proposed next steps:

  • Ideally, we need another maintainers review. If no other maintainer review, we'll merge this PR the 17 June (as the 18 will be the release day of the first JDK17-min. Weekly).
  • @lemeurherve if it is ok for you we'll be monitor together (you as author, me as reviewer) the weekly release Tuesday (afternoon our time) in case we missed something?
  • @lemeurherve same for the next LTS release in July (at least one of us)

@lemeurherve
Copy link
Member Author

@dduportal LGTM

Copy link
Member

@timja timja left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good to me

@lemeurherve lemeurherve merged commit e46e5f6 into jenkinsci:master Jun 13, 2024
12 checks passed
@lemeurherve lemeurherve deleted the issue1890-remove-java11 branch June 13, 2024 08:20
ti-chi-bot bot referenced this pull request in PingCAP-QE/ee-ops Aug 5, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [jenkins/jenkins](https://www.jenkins.io/)
([source](https://togithub.com/jenkinsci/docker)) | minor |
`2.426.2-lts` -> `2.452.3-lts` |

---

### Release Notes

<details>
<summary>jenkinsci/docker (jenkins/jenkins)</summary>

###
[`v2.452.3`](https://togithub.com/jenkinsci/docker/releases/tag/2.452.3)

[Compare
Source](https://togithub.com/jenkinsci/docker/compare/2.452.2...2.452.3)

#### What's Changed

- Remove Java 11 images on weekly release line by
[@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1891](https://togithub.com/jenkinsci/docker/pull/1891)
- hotfix(updatecli): adapt jdk manifests to also target
build-windows-lts-with-jdk11.yaml by
[@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1892](https://togithub.com/jenkinsci/docker/pull/1892)
- Bump Debian Bookworm Linux Version to
[`2024061`](https://togithub.com/jenkinsci/docker/commit/20240612) by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1893](https://togithub.com/jenkinsci/docker/pull/1893)
- chore(deps): bump ubi9/ubi from 9.4-947.1717074712 to 9.4-1123 in
/rhel/ubi9/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1895](https://togithub.com/jenkinsci/docker/pull/1895)
- chore(deps): bump updatecli/updatecli-action from 2.59.0 to 2.60.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1897](https://togithub.com/jenkinsci/docker/pull/1897)
- chore(deps): bump updatecli/updatecli-action from 2.60.0 to 2.61.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1898](https://togithub.com/jenkinsci/docker/pull/1898)
- Bump Alpine Linux Version to 3.20.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1899](https://togithub.com/jenkinsci/docker/pull/1899)
- Use 'ENV variable=xxx' instead of 'ENV variable xxx' by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1900](https://togithub.com/jenkinsci/docker/pull/1900)
- chore(deps): bump ubi9/ubi from 9.4-1123 to 9.4-1123.1719560047 in
/rhel/ubi9/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1901](https://togithub.com/jenkinsci/docker/pull/1901)
- chore(deps): bump ubi8/ubi from 8.10-901.1717584420 to 8.10-1020 in
/rhel/ubi8/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1902](https://togithub.com/jenkinsci/docker/pull/1902)
- Bump Debian Bookworm Linux Version to
[`2024070`](https://togithub.com/jenkinsci/docker/commit/20240701) by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1903](https://togithub.com/jenkinsci/docker/pull/1903)

**Full Changelog**:
jenkinsci/docker@2.452.2...2.452.3

###
[`v2.452.2`](https://togithub.com/jenkinsci/docker/releases/tag/2.452.2)

[Compare
Source](https://togithub.com/jenkinsci/docker/compare/2.452.1...2.452.2)

#### 📦 Jenkins Core updates

- Update to Jenkins 2.452.2
([changelog](https://jenkins.io/changelog-stable/2.452.2))

#### 📦 Dependency updates

- Bump Alpine Linux Version to 3.20.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1881](https://togithub.com/jenkinsci/docker/pull/1881)
- chore(deps): bump ubi8/ubi from 8.9-1160.1715068735 to 8.10-901 in
/rhel/ubi8/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1882](https://togithub.com/jenkinsci/docker/pull/1882)
- chore(deps): bump updatecli/updatecli-action from 2.58.0 to 2.59.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1883](https://togithub.com/jenkinsci/docker/pull/1883)
- chore(deps): bump almalinux from 8.9 to 8.10 in
/almalinux/almalinux8/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1884](https://togithub.com/jenkinsci/docker/pull/1884)
- chore(deps): bump ubi9/ubi from 9.4-947.1714667021 to
9.4-947.1716476138 in /rhel/ubi9/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1885](https://togithub.com/jenkinsci/docker/pull/1885)
- chore(deps): bump ubi8/ubi from 8.10-901 to 8.10-901.1716482497 in
/rhel/ubi8/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1886](https://togithub.com/jenkinsci/docker/pull/1886)
- chore(deps): bump ubi8/ubi from 8.10-901.1716482497 to
8.10-901.1716497712 in /rhel/ubi8/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1887](https://togithub.com/jenkinsci/docker/pull/1887)
- chore(deps): bump ubi8/ubi from 8.10-901.1716497712 to
8.10-901.1717584420 in /rhel/ubi8/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1888](https://togithub.com/jenkinsci/docker/pull/1888)
- chore(deps): bump ubi9/ubi from 9.4-947.1716476138 to
9.4-947.1717074712 in /rhel/ubi9/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1889](https://togithub.com/jenkinsci/docker/pull/1889)

**Full Changelog**:
jenkinsci/docker@2.452.1...2.452.2

###
[`v2.452.1`](https://togithub.com/jenkinsci/docker/releases/tag/2.452.1)

[Compare
Source](https://togithub.com/jenkinsci/docker/compare/2.440.3...2.452.1)

#### 📦 Jenkins Core updates

- Update to Jenkins 2.452.1
([changelog](https://jenkins.io/changelog-stable/2.452.1))

#### 📦 Dependency updates

- chore(linux): Switch from Temurin base images to Temurin JDK binaries
by [@&#8203;gounthar](https://togithub.com/gounthar) in
[https://github.com/jenkinsci/docker/pull/1847](https://togithub.com/jenkinsci/docker/pull/1847)
- chore(windows): Switch from Temurin base images to Temurin JDK
binaries by [@&#8203;gounthar](https://togithub.com/gounthar) in
[https://github.com/jenkinsci/docker/pull/1848](https://togithub.com/jenkinsci/docker/pull/1848)
- Bump Debian Bookworm Linux Version to
[`2024051`](https://togithub.com/jenkinsci/docker/commit/20240513)
([#&#8203;1879](https://togithub.com/jenkinsci/docker/issues/1879))
[@&#8203;github-actions](https://togithub.com/github-actions)
- chore(deps): bump ubi8/ubi from 8.9-1160 to 8.9-1160.1715068735 in
/rhel/ubi8/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1877](https://togithub.com/jenkinsci/docker/pull/1877)
- chore(deps): bump ubi9/ubi from 9.3-1610 to 9.4-947 in
/17/rhel/ubi9/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1872](https://togithub.com/jenkinsci/docker/pull/1872)
- Bump JDK17 version to 17.0.11\_9 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1853](https://togithub.com/jenkinsci/docker/pull/1853)
and
[https://github.com/jenkinsci/docker/pull/1855](https://togithub.com/jenkinsci/docker/pull/1855)
- Bump JDK21 version to 21.0.3\_9 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1854](https://togithub.com/jenkinsci/docker/pull/1854)
and
[https://github.com/jenkinsci/docker/pull/1856](https://togithub.com/jenkinsci/docker/pull/1856)
- Bump JDK11 version to 11.0.23\_9 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1860](https://togithub.com/jenkinsci/docker/pull/1860)
- chore(deps): bump plugin manager to 2.13.0 by
[@&#8203;jenkins-dependency-updater](https://togithub.com/jenkins-dependency-updater)
in
[https://github.com/jenkinsci/docker/pull/1874](https://togithub.com/jenkinsci/docker/pull/1874)
- chore(deps): bump updatecli/updatecli-action to 2.58.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1875](https://togithub.com/jenkinsci/docker/pull/1875)

#### 👻 Maintenance

- chore(updatecli): Check the validity of releases thanks to the
Adoptium API. by [@&#8203;gounthar](https://togithub.com/gounthar) in
[https://github.com/jenkinsci/docker/pull/1851](https://togithub.com/jenkinsci/docker/pull/1851)
- chore(updatecli): adapt manifests to unique Dockerfile per Linux
variant by [@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1873](https://togithub.com/jenkinsci/docker/pull/1873)
- Use correct Dockerfiles in dependabot by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1876](https://togithub.com/jenkinsci/docker/pull/1876)
- Check for Windows JDK releases, same as Linux by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1852](https://togithub.com/jenkinsci/docker/pull/1852)
- Track Java versions for Windows with updatecli by
[@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1781](https://togithub.com/jenkinsci/docker/pull/1781)
- chore(updatecli): add manifests for hadolint & shellcheck in tools
scripts by [@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1858](https://togithub.com/jenkinsci/docker/pull/1858)
- Bump `shellcheck` version to 0.10.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1861](https://togithub.com/jenkinsci/docker/pull/1861)
- cleanup: remove deprecated `install-plugin.sh` script from Linux jdk11
images by [@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1863](https://togithub.com/jenkinsci/docker/pull/1863)
- fix: set jlink compression arg to `zip-6` for Windows jdk21 image by
[@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1864](https://togithub.com/jenkinsci/docker/pull/1864)
- Use permanent changelog location and default to weekly by
[@&#8203;timja](https://togithub.com/timja) in
[https://github.com/jenkinsci/docker/pull/1865](https://togithub.com/jenkinsci/docker/pull/1865)
- Verify SHA256 checksum of plugin installation manager tool by
[@&#8203;basil](https://togithub.com/basil) in
[https://github.com/jenkinsci/docker/pull/1868](https://togithub.com/jenkinsci/docker/pull/1868)
- cleanup: remove unused `.ci/common-functions.sh` script by
[@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1869](https://togithub.com/jenkinsci/docker/pull/1869)
- chore: keep only one Dockerfile per Linux image variant by
[@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1857](https://togithub.com/jenkinsci/docker/pull/1857)

**Full Changelog**:
jenkinsci/docker@2.440.3...2.452.1

###
[`v2.440.3`](https://togithub.com/jenkinsci/docker/releases/tag/2.440.3)

[Compare
Source](https://togithub.com/jenkinsci/docker/compare/2.440.2...2.440.3)

#### 📦 Jenkins Core updates

- Update to Jenkins 2.440.3
([changelog](https://jenkins.io/changelog-stable/2.440.3))

#### 👻 Maintenance

- fix(windows): remove `ConvertFrom-Json` issue by simplifying tags
management by [@&#8203;lemeurherve](https://togithub.com/lemeurherve) in
[https://github.com/jenkinsci/docker/pull/1841](https://togithub.com/jenkinsci/docker/pull/1841)

#### 📦 Dependency updates

- chore(deps): bump ubi8/ubi from 8.9-1136 to 8.9-1160 in
/11/rhel/ubi8/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1845](https://togithub.com/jenkinsci/docker/pull/1845)
- Bump Debian Bookworm Linux Version to
[`2024040`](https://togithub.com/jenkinsci/docker/commit/20240408) by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1846](https://togithub.com/jenkinsci/docker/pull/1846)

**Full Changelog**:
jenkinsci/docker@2.440.2...2.440.3

###
[`v2.440.2`](https://togithub.com/jenkinsci/docker/releases/tag/2.440.2)

[Compare
Source](https://togithub.com/jenkinsci/docker/compare/2.440.1...2.440.2)

#### 📦 Jenkins Core updates

- Update to Jenkins 2.440.2
([changelog](https://jenkins.io/changelog-stable/2.440.2))

#### 👻 Maintenance

- Remove JDK 19 from updatecli script
([#&#8203;1836](https://togithub.com/jenkinsci/docker/issues/1836))
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite)

#### 📦 Dependency updates

- Bump Debian Bookworm Linux Version to
[`2024031`](https://togithub.com/jenkinsci/docker/commit/20240311)
([#&#8203;1839](https://togithub.com/jenkinsci/docker/issues/1839))
[@&#8203;github-actions](https://togithub.com/github-actions)
- chore(deps): bump ubi9/ubi from 9.3-1552 to 9.3-1610 in
/17/rhel/ubi9/hotspot
([#&#8203;1837](https://togithub.com/jenkinsci/docker/issues/1837))
[@&#8203;dependabot](https://togithub.com/dependabot)

###
[`v2.440.1`](https://togithub.com/jenkinsci/docker/releases/tag/2.440.1)

[Compare
Source](https://togithub.com/jenkinsci/docker/compare/2.426.3...2.440.1)

#### 📦 Jenkins Core updates

- Update to Jenkins 2.440.1
([changelog](https://jenkins.io/changelog-stable/#v2.440.1))

#### What's Changed

- chore(deps): bump ubi9/ubi from 9.3-1476 to 9.3-1552 in
/17/rhel/ubi9/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1812](https://togithub.com/jenkinsci/docker/pull/1812)
- Use latest Java releases by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1810](https://togithub.com/jenkinsci/docker/pull/1810)
- chore(deps): bump updatecli/updatecli-action from 2.53.0 to 2.54.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1813](https://togithub.com/jenkinsci/docker/pull/1813)
- Remove updatecli ref to non-existent file by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1814](https://togithub.com/jenkinsci/docker/pull/1814)
- Bump Alpine Linux Version to 3.19.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1815](https://togithub.com/jenkinsci/docker/pull/1815)
- Only run actions from jenkinsci org by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1809](https://togithub.com/jenkinsci/docker/pull/1809)
- Use Alpine 3.19.1, no 3.18.4 for Java 17 container default by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1816](https://togithub.com/jenkinsci/docker/pull/1816)
- Remove install-plugins.sh from ubi9 Java 17 and Java 21 by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1817](https://togithub.com/jenkinsci/docker/pull/1817)
- Use consistent jlink args within Java versions by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1818](https://togithub.com/jenkinsci/docker/pull/1818)
- Reduce diffs between similar files by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1819](https://togithub.com/jenkinsci/docker/pull/1819)
- Add Java 21 Windows container by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1820](https://togithub.com/jenkinsci/docker/pull/1820)
- Use Jenkins 2.442 as default version by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1821](https://togithub.com/jenkinsci/docker/pull/1821)
- Remove ppc64le jdk21-preview images, add jdk21 image by
[@&#8203;ksalerno99](https://togithub.com/ksalerno99) in
[https://github.com/jenkinsci/docker/pull/1823](https://togithub.com/jenkinsci/docker/pull/1823)
- chore(deps): bump plugin manager to 2.12.15 by
[@&#8203;jenkins-dependency-updater](https://togithub.com/jenkins-dependency-updater)
in
[https://github.com/jenkinsci/docker/pull/1824](https://togithub.com/jenkinsci/docker/pull/1824)
- Bump Debian Bookworm Linux Version to
[`2024013`](https://togithub.com/jenkinsci/docker/commit/20240130) by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1825](https://togithub.com/jenkinsci/docker/pull/1825)
- chore(deps): bump release-drafter/release-drafter from 5 to 6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1827](https://togithub.com/jenkinsci/docker/pull/1827)
- Replace Java 21 previews with released versions by
[@&#8203;MarkEWaite](https://togithub.com/MarkEWaite) in
[https://github.com/jenkinsci/docker/pull/1822](https://togithub.com/jenkinsci/docker/pull/1822)
- chore(deps): bump ubi8/ubi from 8.9-1107.1705420509 to
8.9-1107.1706791207 in /11/rhel/ubi8/hotspot by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1826](https://togithub.com/jenkinsci/docker/pull/1826)
- chore(deps): bump peter-evans/create-pull-request from 5 to 6 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1828](https://togithub.com/jenkinsci/docker/pull/1828)
- Bump Debian Bookworm Linux Version to
[`2024021`](https://togithub.com/jenkinsci/docker/commit/20240211) by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/jenkinsci/docker/pull/1830](https://togithub.com/jenkinsci/docker/pull/1830)
- chore(deps): bump updatecli/updatecli-action from 2.54.0 to 2.55.0 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/jenkinsci/docker/pull/1831](https://togithub.com/jenkinsci/docker/pull/1831)

**Full Changelog**:
jenkinsci/docker@2.426.3...2.440.1

###
[`v2.426.3`](https://togithub.com/jenkinsci/docker/releases/tag/2.426.3)

[Compare
Source](https://togithub.com/jenkinsci/docker/compare/2.426.2...2.426.3)

<!-- Optional: add a release summary here -->

#### 📦 Jenkins Core updates

- Update to Jenkins 2.426.3
([changelog](https://jenkins.io/changelog-stable/#v2.426.3))

#### 📦 Dependency updates

- Bump UBI 9 version to 9.3-1476
([#&#8203;1798](https://togithub.com/jenkinsci/docker/issues/1798))
[@&#8203;dependabot](https://togithub.com/dependabot)
- Bump UBI 8 version to 8.9-1107.1705420509
([#&#8203;1807](https://togithub.com/jenkinsci/docker/issues/1807))
[@&#8203;dependabot](https://togithub.com/dependabot)
- Bump Debian Bookworm Linux Version to
[`2024011`](https://togithub.com/jenkinsci/docker/commit/20240110)
([#&#8203;1799](https://togithub.com/jenkinsci/docker/issues/1799))

#### 🐛 Bug fixes

- Improve logging for common write permission failure
([#&#8203;1801](https://togithub.com/jenkinsci/docker/issues/1801))
[@&#8203;clintonsteiner](https://togithub.com/clintonsteiner)

**Full Changelog**:
jenkinsci/docker@2.426.2...2.426.3

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View the
[repository job
log](https://developer.mend.io/github/PingCAP-QE/ee-ops).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMTMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjQzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants