From 85afcc9fb71f2d3e8c7f119eada6f478c47c3955 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 16 Jul 2024 22:07:24 +0200 Subject: [PATCH 001/235] Weekly (#449) * fix(docker): Stable to weekly. * fix(docker): Stable to weekly. --- dockerfiles/Dockerfile | 2 +- .../{jenkins-lts.yaml => jenkins-weekly.yaml} | 24 +++++++++---------- 2 files changed, 13 insertions(+), 13 deletions(-) rename updatecli/updatecli.d/{jenkins-lts.yaml => jenkins-weekly.yaml} (53%) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index adac89f9..a0d40980 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.452.3 +ARG JENKINS_VERSION=2.447 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" diff --git a/updatecli/updatecli.d/jenkins-lts.yaml b/updatecli/updatecli.d/jenkins-weekly.yaml similarity index 53% rename from updatecli/updatecli.d/jenkins-lts.yaml rename to updatecli/updatecli.d/jenkins-weekly.yaml index b5fb62e8..7e97b8ac 100644 --- a/updatecli/updatecli.d/jenkins-lts.yaml +++ b/updatecli/updatecli.d/jenkins-weekly.yaml @@ -1,5 +1,5 @@ --- -name: Bump Jenkins' LTS version in the controller Dockerfile +name: Bump Jenkins' Weekly version in the controller Dockerfile scms: default: @@ -14,35 +14,35 @@ scms: branch: "{{ .github.branch }}" sources: - JenkinsLatestLTS: - name: Get the latest Jenkins LTS version - kind: shell + JenkinsLatestWeekly: + name: Get the latest Jenkins Weekly version + kind: jenkins spec: - command: bash ./updatecli/scripts/jenkins-lts.sh 0 # source input value passed as argument + release: weekly conditions: - # Test that the latest LTS Jenkins version exists - jenkinsLatestLTSVersion: + # Test that the latest Weekly Jenkins version exists + jenkinsLatestWeeklyVersion: kind: jenkins - sourceid: JenkinsLatestLTS + sourceid: JenkinsLatestWeekly targets: - setJenkinsLatestLTS: + setJenkinsLatestWeekly: kind: dockerfile spec: file: dockerfiles/Dockerfile instruction: keyword: "ARG" matcher: "JENKINS_VERSION" - name: "[jenkins-controller] Bump Jenkins LTS version in dockerfiles/Dockerfile" - sourceid: JenkinsLatestLTS + name: "[jenkins-controller] Bump Jenkins Weekly version in dockerfiles/Dockerfile" + sourceid: JenkinsLatestWeekly scmid: default actions: default: kind: github/pullrequest scmid: default - title: Update Jenkins LTS versions to {{ source "JenkinsLatestLTS" }} in the controller Dockerfile + title: Update Jenkins Weekly versions to {{ source "JenkinsLatestWeekly" }} in the controller Dockerfile spec: labels: - dependencies From c6be1255ac63918af90053741b96b7a27e5a928c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 16 Jul 2024 22:09:16 +0200 Subject: [PATCH 002/235] Update Dockerfile --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index a0d40980..d1fcec06 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.447 +ARG JENKINS_VERSION=2.467 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 86b84ef1ce715d0b763e37808804552417b35fe1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 16 Jul 2024 22:09:41 +0200 Subject: [PATCH 003/235] Update .env --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index d1a4e3a8..411a525b 100644 --- a/.env +++ b/.env @@ -1,3 +1,3 @@ GHCR_USERNAME=jenkins-docs IMAGE_PREFIX=ghcr.io -BRANCH_SUFFIX= +BRANCH_SUFFIX=weekly From 03d9483a4277a597cd314431e4a838bf371afbbb Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 16 Jul 2024 23:00:37 +0200 Subject: [PATCH 004/235] Update jenkins-weekly.yaml --- updatecli/updatecli.d/jenkins-weekly.yaml | 65 ++++++++++++++++------- 1 file changed, 46 insertions(+), 19 deletions(-) diff --git a/updatecli/updatecli.d/jenkins-weekly.yaml b/updatecli/updatecli.d/jenkins-weekly.yaml index 7e97b8ac..210e8719 100644 --- a/updatecli/updatecli.d/jenkins-weekly.yaml +++ b/updatecli/updatecli.d/jenkins-weekly.yaml @@ -1,49 +1,76 @@ --- +# This YAML configuration defines a pipeline for automatically updating the Jenkins Weekly version +# in a Dockerfile. It utilizes various components such as sources, conditions, targets, and actions +# to achieve this automation. + +# Define the pipeline's name and the SCM (Source Control Management) configurations. name: Bump Jenkins' Weekly version in the controller Dockerfile scms: default: kind: github spec: - user: "{{ .github.user }}" - email: "{{ .github.email }}" - owner: "{{ .github.owner }}" - repository: "{{ .github.repository }}" - token: "{{ requiredEnv .github.token }}" - username: "{{ .github.username }}" - branch: "{{ .github.branch }}" + user: "{{ .github.user }}" # GitHub user for authentication + email: "{{ .github.email }}" # Email associated with the GitHub user + owner: "{{ .github.owner }}" # Owner of the GitHub repository + repository: "{{ .github.repository }}" # Name of the GitHub repository + token: "{{ requiredEnv .github.token }}" # GitHub token for authentication + username: "{{ .github.username }}" # GitHub username + branch: "{{ .github.branch }}" # Branch to apply changes +# Define the sources for the pipeline. These are the origins of data used in the pipeline. sources: JenkinsLatestWeekly: name: Get the latest Jenkins Weekly version kind: jenkins spec: - release: weekly + release: weekly # Specifies that the weekly release of Jenkins is to be fetched + JenkinsLatestWeeklyJDK17: + name: Get the latest Jenkins Weekly version with JDK 17 + kind: jenkins + spec: + release: weekly # Specifies that the weekly release of Jenkins is to be fetched + jdk: 17 # Specifies JDK 17 for the Jenkins version + transformers: + - addsuffix: "-jdk17" # Adds a suffix to the version to denote JDK 17 +# Define conditions that must be met for the pipeline to proceed. conditions: # Test that the latest Weekly Jenkins version exists - jenkinsLatestWeeklyVersion: + jenkinsWeekly: kind: jenkins - sourceid: JenkinsLatestWeekly + sourceid: JenkinsLatestWeekly # Links this condition to the JenkinsLatestWeekly source + spec: + release: weekly + # Test that the docker image exists + dockerImage: + kind: dockerimage + sourceid: JenkinsLatestWeekly # Links this condition to the JenkinsLatestWeekly source + spec: + image: "jenkins/jenkins" # Specifies the Docker image to check + transformers: + - addsuffix: "-jdk17" # Adds a suffix to denote JDK 17 +# Define the targets for the pipeline. These are the end goals the pipeline aims to achieve. targets: setJenkinsLatestWeekly: kind: dockerfile + sourceid: JenkinsLatestWeeklyJDK17 # Links this target to the JenkinsLatestWeeklyJDK17 source spec: - file: dockerfiles/Dockerfile + file: dockerfiles/Dockerfile # Specifies the Dockerfile to be updated instruction: - keyword: "ARG" - matcher: "JENKINS_VERSION" + keyword: "ARG" # Specifies the Dockerfile instruction to update + matcher: "JENKINS_VERSION" # Specifies the argument to be updated name: "[jenkins-controller] Bump Jenkins Weekly version in dockerfiles/Dockerfile" - sourceid: JenkinsLatestWeekly - scmid: default + scmid: default # Links this target to the default SCM configuration +# Define the actions to be taken once the conditions are met and targets are ready. actions: default: kind: github/pullrequest - scmid: default - title: Update Jenkins Weekly versions to {{ source "JenkinsLatestWeekly" }} in the controller Dockerfile + scmid: default # Links this action to the default SCM configuration + title: Update Jenkins Weekly versions to {{ source "JenkinsLatestWeekly" }}-jdk17 in the controller Dockerfile spec: labels: - - dependencies - - chore + - dependencies # Label for the pull request + - chore # Label for the pull request From b66e7fea3718b58f2fe68e65dfafb0cfaa0e564f Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 16 Jul 2024 23:01:38 +0200 Subject: [PATCH 005/235] Update values.github-action.yaml --- updatecli/values.github-action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updatecli/values.github-action.yaml b/updatecli/values.github-action.yaml index b1bf9199..6664f4cc 100644 --- a/updatecli/values.github-action.yaml +++ b/updatecli/values.github-action.yaml @@ -3,6 +3,6 @@ github: email: "41898282+github-actions[bot]@users.noreply.github.com" username: "github-actions" token: "UPDATECLI_GITHUB_TOKEN" - branch: "main" + branch: "weekly" owner: "jenkins-docs" repository: "quickstart-tutorials" From fd5fa6d1645aef02bdf3dc0d18ac821658615d9e Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 16 Jul 2024 23:02:33 +0200 Subject: [PATCH 006/235] Update updatecli.yaml --- .github/workflows/updatecli.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updatecli.yaml b/.github/workflows/updatecli.yaml index f5bc9f05..a6875320 100644 --- a/.github/workflows/updatecli.yaml +++ b/.github/workflows/updatecli.yaml @@ -37,7 +37,7 @@ jobs: # It uses the "apply" command of updatecli with the specified config and values files # The GitHub token is passed as an environment variable - name: Run Updatecli in Apply mode - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/weekly' run: updatecli apply --config ./updatecli/updatecli.d --values ./updatecli/values.github-action.yaml env: UPDATECLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From a90da830428a99906e261e8702647c38d49b3ba6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Jul 2024 23:03:45 +0200 Subject: [PATCH 007/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#450) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index d1fcec06..8cf92d68 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.467 +ARG JENKINS_VERSION=2.468-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 99c6e2bf91807a3adf640813d3505922c8e571f4 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 19 Jul 2024 11:52:45 +0200 Subject: [PATCH 008/235] fix(docker): Uses override to allow for changes to yaml or plugins.txt to be taken into account. (#460) --- dockerfiles/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 8cf92d68..bf2ed6b6 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -25,11 +25,11 @@ USER jenkins RUN echo "${JENKINS_VERSION}" > /usr/share/jenkins/ref/jenkins.install.UpgradeWizard.state # We copy a list of plugins to install to the Jenkins ref directory in the image. -COPY plugins.txt /usr/share/jenkins/ref/plugins.txt +COPY plugins.txt /usr/share/jenkins/ref/plugins.txt.override # We use the Jenkins plugin CLI to install the plugins listed in the plugins.txt file. -RUN jenkins-plugin-cli --plugin-file /usr/share/jenkins/ref/plugins.txt +RUN ln -s /usr/share/jenkins/ref/plugins.txt.override /usr/share/jenkins/ref/plugins.txt && jenkins-plugin-cli --plugin-file /usr/share/jenkins/ref/plugins.txt # We copy a pre-configured Jenkins configuration file to the Jenkins ref directory in the image. # This allows us to pre-configure Jenkins with our desired settings. -COPY jenkins.yaml /usr/share/jenkins/ref/jenkins.yaml +COPY jenkins.yaml /usr/share/jenkins/ref/jenkins.yaml.override From 96be8d073f06bb99353e36d0613bf333a04f4347 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 10:19:07 +0200 Subject: [PATCH 009/235] chore: deps(dockerfile): bump image "debian" (#468) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 94b728f2..ed315d84 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20240701 as prepare-stage +FROM debian:bookworm-20240722 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From f955256cbc9f74b07edee55441742196d0cf10e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 10:19:29 +0200 Subject: [PATCH 010/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#469) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index bf2ed6b6..c1af1564 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.468-jdk17 +ARG JENKINS_VERSION=2.469-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 3d4113a077a726bce0008574b0ab917eb3a467c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 19:15:30 +0200 Subject: [PATCH 011/235] Bump ssh-agent version to 5.45.0 (#482) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 3c61325f..138cb5ef 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:5.44.0 + image: jenkins/ssh-agent:5.45.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 643cdccf..30323a92 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:5.44.0 + image: jenkins/ssh-agent:5.45.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index c94dbeb1..41c751b5 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.44.0 as ssh-agent +FROM jenkins/ssh-agent:5.45.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index fdb9126c..ae0866f9 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.44.0 as ssh-agent +FROM jenkins/ssh-agent:5.45.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 7871a500..45bdc17c 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.44.0 as ssh-agent +FROM jenkins/ssh-agent:5.45.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 873d7e6b..9fcc2ecc 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.44.0 as ssh-agent +FROM jenkins/ssh-agent:5.45.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 59b2bf6f..cd204ebe 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.44.0 as ssh-agent +FROM jenkins/ssh-agent:5.45.0 as ssh-agent ARG NODE_MAJOR=20 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 6b108d9c..caaf8406 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:5.44.0 as ssh-agent +FROM jenkins/ssh-agent:5.45.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From d41e2f90b2c4aed16776ec0d3b549d31d7c6ec49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 10:54:45 +0200 Subject: [PATCH 012/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#497) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index c1af1564..6116baea 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.469-jdk17 +ARG JENKINS_VERSION=2.470-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From a801f123dfd46481276665ad05bb966008603ba3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 09:25:00 +0200 Subject: [PATCH 013/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#516) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 99fabf89..58f74522 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-07-14-17-19-51 +FROM gitpod/workspace-full:2024-08-08-14-54-59 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From f4be0f21023edc6ff28ccdee94dd8685b3a0b14f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 09:25:16 +0200 Subject: [PATCH 014/235] chore: deps(dockerfile): bump golang version (#517) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index ae0866f9..4ead935b 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.22.5 +ARG GOLANG_VERSION=1.22.6 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From 0ed96a9b4a456a6ad59d3ad1748a1662ff8ac0af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 09:25:34 +0200 Subject: [PATCH 015/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#518) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 6116baea..742ef76d 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.470-jdk17 +ARG JENKINS_VERSION=2.471-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 8454e1637fb7bcb98341ad589faf9483f17478df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 10 Aug 2024 09:25:50 +0200 Subject: [PATCH 016/235] Bump ssh-agent version to 5.46.0 (#519) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 138cb5ef..d3e90ecc 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:5.45.0 + image: jenkins/ssh-agent:5.46.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 30323a92..c56fdb02 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:5.45.0 + image: jenkins/ssh-agent:5.46.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 41c751b5..74a8df69 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.45.0 as ssh-agent +FROM jenkins/ssh-agent:5.46.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 4ead935b..5bf06d41 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.45.0 as ssh-agent +FROM jenkins/ssh-agent:5.46.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 45bdc17c..4a479202 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.45.0 as ssh-agent +FROM jenkins/ssh-agent:5.46.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 9fcc2ecc..2db238d6 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.45.0 as ssh-agent +FROM jenkins/ssh-agent:5.46.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index cd204ebe..379d4668 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.45.0 as ssh-agent +FROM jenkins/ssh-agent:5.46.0 as ssh-agent ARG NODE_MAJOR=20 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index caaf8406..2d60ce0e 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:5.45.0 as ssh-agent +FROM jenkins/ssh-agent:5.46.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 6b33347ed1b0baf2ad5ab50401017129360fce34 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 18:16:17 +0200 Subject: [PATCH 017/235] chore: deps(dockerfile): bump image "debian" (#540) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index ed315d84..2769b9a9 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20240722 as prepare-stage +FROM debian:bookworm-20240812 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From 2ae3543004c4ca6243b1b922ec05f825d89877b7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 18:16:51 +0200 Subject: [PATCH 018/235] chore: deps(dockerfile): bump golang version (#541) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 5bf06d41..8d0ed13b 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.22.6 +ARG GOLANG_VERSION=1.23.0 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From 66e37d18353390ee59e0a69feafff7b834869970 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 18:18:15 +0200 Subject: [PATCH 019/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#542) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 742ef76d..1bdad469 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.471-jdk17 +ARG JENKINS_VERSION=2.472-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 333b4e71a2efd53041d4198173e8f3eeaa3e82d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 18 Aug 2024 10:31:48 +0200 Subject: [PATCH 020/235] chore: [maven-agent] Bump maven version in dockerfiles/maven/Dockerfile (#554) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/maven/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 4a479202..dd964f29 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install maven -ARG MAVEN_VERSION=3.9.8 +ARG MAVEN_VERSION=3.9.9 # Set SHELL flags for RUN commands to allow -e and pipefail # Rationale:https://github.com/hadolint/hadolint/wiki/DL4006 From d27f5ef69c128126772a64beba14b45567e6c209 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 08:35:07 +0200 Subject: [PATCH 021/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#562) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 1bdad469..7c667f3e 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.472-jdk17 +ARG JENKINS_VERSION=2.473-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From f749437457a3fbd41a8c26072ba4725e87718d36 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 28 Aug 2024 10:49:48 +0200 Subject: [PATCH 022/235] chore(docker): Bump debian to bookworm-20240812-slim. --- dockerfiles/agent-discovery/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/agent-discovery/Dockerfile b/dockerfiles/agent-discovery/Dockerfile index be96b45c..9c757eb3 100644 --- a/dockerfiles/agent-discovery/Dockerfile +++ b/dockerfiles/agent-discovery/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20240311-slim as prepare-stage +FROM debian:bookworm-20240812-slim as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From 941e7c06db5216e52525d414f4a56112b0d84b7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 10:51:32 +0200 Subject: [PATCH 023/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#582) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 7c667f3e..aba82491 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.473-jdk17 +ARG JENKINS_VERSION=2.474-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From b68d548ac15b563c8e1c7e0b49fea5c3efa46aeb Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 28 Aug 2024 10:57:01 +0200 Subject: [PATCH 024/235] Update Dockerfile (#584) --- dockerfiles/agent-discovery/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/agent-discovery/Dockerfile b/dockerfiles/agent-discovery/Dockerfile index 9c757eb3..21a2cb99 100644 --- a/dockerfiles/agent-discovery/Dockerfile +++ b/dockerfiles/agent-discovery/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20240812-slim as prepare-stage +FROM debian:bookworm-20240722-slim as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From b8b5a88d8d57a3d54b93adb68795cf702a557ac5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 14:59:50 +0200 Subject: [PATCH 025/235] chore: deps(dockerfile): bump image "debian" (#594) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 2769b9a9..cefd0ef5 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20240812 as prepare-stage +FROM debian:bookworm-20240904 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From a015304f1bcdc9b08184b9e3b809adba53bc5c8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:01:07 +0200 Subject: [PATCH 026/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#597) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index aba82491..75f2470e 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.474-jdk17 +ARG JENKINS_VERSION=2.475-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 7bcc163879e5811b48fc6167bc02f15f58994a53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:03:17 +0200 Subject: [PATCH 027/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#595) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 58f74522..993271e0 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-08-08-14-54-59 +FROM gitpod/workspace-full:2024-09-05-09-30-51 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From af273da359a4a5a8bac6ee12cb50317686a1dca0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 10:01:53 +0200 Subject: [PATCH 028/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#623) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 993271e0..9ce39b82 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-09-05-09-30-51 +FROM gitpod/workspace-full:2024-09-09-07-24-08 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From abb4b477f764e297bd1eb58384befd3737f4f316 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 10:02:25 +0200 Subject: [PATCH 029/235] chore: deps(dockerfile): bump golang version (#624) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 8d0ed13b..bfed8c70 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.23.0 +ARG GOLANG_VERSION=1.23.1 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From 3b69b80a2f3ead920168709308ddc72c51505a11 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 10:03:06 +0200 Subject: [PATCH 030/235] Bump ssh-agent version to 5.47.0 (#625) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index d3e90ecc..643b3f07 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:5.46.0 + image: jenkins/ssh-agent:5.47.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index c56fdb02..2c5d3798 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:5.46.0 + image: jenkins/ssh-agent:5.47.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 74a8df69..62dafb86 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.46.0 as ssh-agent +FROM jenkins/ssh-agent:5.47.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index bfed8c70..9d1f420b 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.46.0 as ssh-agent +FROM jenkins/ssh-agent:5.47.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index dd964f29..ffed77bd 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.46.0 as ssh-agent +FROM jenkins/ssh-agent:5.47.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 2db238d6..3968460a 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.46.0 as ssh-agent +FROM jenkins/ssh-agent:5.47.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 379d4668..34ec6b08 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.46.0 as ssh-agent +FROM jenkins/ssh-agent:5.47.0 as ssh-agent ARG NODE_MAJOR=20 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 2d60ce0e..c45998bc 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:5.46.0 as ssh-agent +FROM jenkins/ssh-agent:5.47.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 372a1f938d7aabc527d5adc0f2bff983efe520ce Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 10 Sep 2024 10:08:15 +0200 Subject: [PATCH 031/235] chore(jenkins): Update Jenkins plugins (#632) --- dockerfiles/plugins.txt | 68 ++++++++++++++++++++--------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 0807ee8f..012460fd 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -1,28 +1,28 @@ -ant:497.v94e7d9fffa_b_9 +ant:511.v0a_a_1a_334f41b_ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.78.1-248.ve27176eb_46cb_ -branch-api:2.1169.va_f810c56e895 +branch-api:2.1178.v969d9eb_c728e build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 -checks-api:2.2.0 -cloudbees-folder:6.928.v7c780211d66e -commons-lang3-api:3.14.0-76.vda_5591261cfe -commons-text-api:1.12.0-119.v73ef73f2345d -configuration-as-code:1810.v9b_c30a_249a_4c +checks-api:2.2.1 +cloudbees-folder:6.942.vb_43318a_156b_2 +commons-lang3-api:3.17.0-84.vb_b_938040b_078 +commons-text-api:1.12.0-129.v99a_50df237f7 +configuration-as-code:1850.va_a_8c31d3158b_ credentials-binding:681.vf91669a_32e45 credentials:1371.vfee6b_095f0a_3 display-url-api:2.204.vf6fddd8a_8b_e9 -durable-task:555.v6802fe0f0b_82 -echarts-api:5.5.0-1 -font-awesome-api:6.5.2-1 +durable-task:568.v8fb_5c57e8417 +echarts-api:5.5.1-1 +font-awesome-api:6.6.0-2 git-client:5.0.0 -git:5.2.2 -github-api:1.318-461.v7a_c09c9fa_d63 -github-branch-source:1789.v5b_0c0cea_18c3 -github:1.39.0 -gradle:2.12 +git:5.4.1 +github-api:1.321-478.vc9ce627ce001 +github-branch-source:1797.v86fdb_4d57d43 +github:1.40.0 +gradle:2.12.1 instance-identity:185.v303dc7c645f9 ionicons-api:74.v93d5eb_813d5f jackson2-api:2.17.0-379.v02de8ec9f64c @@ -33,35 +33,35 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1265.v65b_14fa_f12f0 +junit:1296.vb_f538b_c88630 locale:519.v4e20f313cfa_f mailer:472.vf7c289a_4b_420 matrix-auth:3.2.2 matrix-project:832.va_66e270d2946 metrics:4.2.21-451.vd51df8df52ec -mina-sshd-api-common:2.13.1-117.v2f1a_b_66ff91d -mina-sshd-api-core:2.13.1-117.v2f1a_b_66ff91d -okhttp-api:4.11.0-172.vda_da_1feeb_c6e +mina-sshd-api-common:2.13.2-125.v200281b_61d59 +mina-sshd-api-core:2.13.2-125.v200281b_61d59 +okhttp-api:4.11.0-181.v1de5b_83857df pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:313.v1322ce83d680 -pipeline-groovy-lib:727.ve832a_9244dfa_ +pipeline-graph-view:340.v28cecee8b_25f +pipeline-groovy-lib:730.ve57b_34648c63 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ -pipeline-model-api:2.2205.vc9522a_9d5711 -pipeline-model-definition:2.2205.vc9522a_9d5711 -pipeline-model-extensions:2.2205.vc9522a_9d5711 +pipeline-model-api:2.2214.vb_b_34b_2ea_9b_83 +pipeline-model-definition:2.2214.vb_b_34b_2ea_9b_83 +pipeline-model-extensions:2.2214.vb_b_34b_2ea_9b_83 pipeline-rest-api:2.34 pipeline-stage-step:312.v8cd10304c27a_ -pipeline-stage-tags-metadata:2.2205.vc9522a_9d5711 +pipeline-stage-tags-metadata:2.2214.vb_b_34b_2ea_9b_83 pipeline-stage-view:2.34 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:4.1.0 resource-disposer:0.23 -scm-api:690.vfc8b_54395023 -script-security:1341.va_2819b_414686 -snakeyaml-api:2.2-111.vc6598e30cc65 -ssh-credentials:337.v395d2403ccd4 +scm-api:696.v778d637b_a_762 +script-security:1358.vb_26663c13537 +snakeyaml-api:2.3-123.v13484c65210a_ +ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 @@ -70,12 +70,12 @@ token-macro:400.v35420b_922dcb_ trilead-api:2.147.vb_73cc728a_32e variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 -workflow-api:1316.v33eb_726c50b_a_ +workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:3908.vd6b_b_5a_a_54010 -workflow-durable-task-step:1360.v82d13453da_a_f -workflow-job:1400.v7fd111b_ec82f -workflow-multibranch:783.787.v50539468395f +workflow-cps:3961.ve48ee2c44a_b_3 +workflow-durable-task-step:1371.vb_7cec8f3b_95e +workflow-job:1436.vfa_244484591f +workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 workflow-support:920.v59f71ce16f04 From d988325e5730be6f5493c6576c931b437fa7e807 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 15:35:35 +0200 Subject: [PATCH 032/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#636) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 9ce39b82..30aa22d9 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-09-09-07-24-08 +FROM gitpod/workspace-full:2024-09-11-00-04-27 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From c77ceac7cf2a6a9c270eeba78612c9b096bcfe7c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 15:37:02 +0200 Subject: [PATCH 033/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#638) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 75f2470e..de9bab10 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.475-jdk17 +ARG JENKINS_VERSION=2.476-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From a34db8e3e90d371e3435f4a1caacae55fb82e314 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Sep 2024 11:13:55 +0200 Subject: [PATCH 034/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#646) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 30aa22d9..abf70902 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-09-11-00-04-27 +FROM gitpod/workspace-full:2024-09-12-15-52-34 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 21aeedeb8a1f143b89d011b905cc7b7ef4e17de1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 09:21:30 +0200 Subject: [PATCH 035/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#648) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index de9bab10..7f7c8fdf 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.476-jdk17 +ARG JENKINS_VERSION=2.477-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 0729dc98583f03075b4fca223c1fa1882ec50d24 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 10:35:13 +0200 Subject: [PATCH 036/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#655) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index abf70902..944bf163 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-09-12-15-52-34 +FROM gitpod/workspace-full:2024-09-22-20-53-01 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From d52cec27b83c5bf06ff9bfbe2665df033ede77f0 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 23 Sep 2024 10:35:40 +0200 Subject: [PATCH 037/235] chore(jenkins): Update Jenkins plugins (#656) --- dockerfiles/plugins.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 012460fd..6ff4d464 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,22 +7,22 @@ branch-api:2.1178.v969d9eb_c728e build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 -cloudbees-folder:6.942.vb_43318a_156b_2 +cloudbees-folder:6.951.v5f91d88d76b_b_ commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1850.va_a_8c31d3158b_ credentials-binding:681.vf91669a_32e45 -credentials:1371.vfee6b_095f0a_3 +credentials:1378.v81ef4269d764 display-url-api:2.204.vf6fddd8a_8b_e9 -durable-task:568.v8fb_5c57e8417 +durable-task:577.v2a_8a_4b_7c0247 echarts-api:5.5.1-1 font-awesome-api:6.6.0-2 -git-client:5.0.0 -git:5.4.1 +git-client:6.0.0 +git:5.5.1 github-api:1.321-478.vc9ce627ce001 github-branch-source:1797.v86fdb_4d57d43 github:1.40.0 -gradle:2.12.1 +gradle:2.13 instance-identity:185.v303dc7c645f9 ionicons-api:74.v93d5eb_813d5f jackson2-api:2.17.0-379.v02de8ec9f64c @@ -33,7 +33,7 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1296.vb_f538b_c88630 +junit:1300.v03d9d8a_cf1fb_ locale:519.v4e20f313cfa_f mailer:472.vf7c289a_4b_420 matrix-auth:3.2.2 @@ -56,10 +56,10 @@ pipeline-stage-step:312.v8cd10304c27a_ pipeline-stage-tags-metadata:2.2214.vb_b_34b_2ea_9b_83 pipeline-stage-view:2.34 plain-credentials:183.va_de8f1dd5a_2b_ -plugin-util-api:4.1.0 +plugin-util-api:5.1.0 resource-disposer:0.23 scm-api:696.v778d637b_a_762 -script-security:1358.vb_26663c13537 +script-security:1362.v67dc1f0e1b_b_3 snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f @@ -72,11 +72,11 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:3961.ve48ee2c44a_b_3 +workflow-cps:3964.v0767b_4b_a_0b_fa_ workflow-durable-task-step:1371.vb_7cec8f3b_95e workflow-job:1436.vfa_244484591f workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 -workflow-support:920.v59f71ce16f04 +workflow-support:926.v9f4f9b_b_98c19 ws-cleanup:0.46 From 3672005d269b1663d1536beb52625376160377d4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:34:03 +0200 Subject: [PATCH 038/235] Bump ssh-agent version to 5.48.0 (#664) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 643b3f07..a7a20ebd 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:5.47.0 + image: jenkins/ssh-agent:5.48.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 2c5d3798..12b65b1e 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:5.47.0 + image: jenkins/ssh-agent:5.48.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 62dafb86..150680a8 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.47.0 as ssh-agent +FROM jenkins/ssh-agent:5.48.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 9d1f420b..a7a09013 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.47.0 as ssh-agent +FROM jenkins/ssh-agent:5.48.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index ffed77bd..e46c1cdb 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.47.0 as ssh-agent +FROM jenkins/ssh-agent:5.48.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 3968460a..c9cdd750 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.47.0 as ssh-agent +FROM jenkins/ssh-agent:5.48.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 34ec6b08..80b3f0dd 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.47.0 as ssh-agent +FROM jenkins/ssh-agent:5.48.0 as ssh-agent ARG NODE_MAJOR=20 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index c45998bc..3809fa12 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:5.47.0 as ssh-agent +FROM jenkins/ssh-agent:5.48.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 9e1facee7b465b8993dac27a267d44e5f18bd169 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 10:45:09 +0200 Subject: [PATCH 039/235] chore: deps(dockerfile): bump image "debian" (#667) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index cefd0ef5..811b228e 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20240904 as prepare-stage +FROM debian:bookworm-20240926 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From 3d531f7bfacdf32ffd7223b3ffc7bada9f6bc1bc Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 27 Sep 2024 10:45:35 +0200 Subject: [PATCH 040/235] chore(jenkins): Update Jenkins plugins (#668) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 6ff4d464..6bb49238 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,7 +7,7 @@ branch-api:2.1178.v969d9eb_c728e build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 -cloudbees-folder:6.951.v5f91d88d76b_b_ +cloudbees-folder:6.955.v81e2a_35c08d3 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1850.va_a_8c31d3158b_ @@ -33,7 +33,7 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1300.v03d9d8a_cf1fb_ +junit:1302.va_b_878c32eb_b_5 locale:519.v4e20f313cfa_f mailer:472.vf7c289a_4b_420 matrix-auth:3.2.2 @@ -44,7 +44,7 @@ mina-sshd-api-core:2.13.2-125.v200281b_61d59 okhttp-api:4.11.0-181.v1de5b_83857df pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:340.v28cecee8b_25f +pipeline-graph-view:349.veda_b_e2366d99 pipeline-groovy-lib:730.ve57b_34648c63 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ @@ -72,7 +72,7 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:3964.v0767b_4b_a_0b_fa_ +workflow-cps:3969.vdc9d3a_efcc6a_ workflow-durable-task-step:1371.vb_7cec8f3b_95e workflow-job:1436.vfa_244484591f workflow-multibranch:795.ve0cb_1f45ca_9a_ From 27b3f02eca008077980b673c64019ab3b35245e8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 11:10:54 +0200 Subject: [PATCH 041/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#669) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 7f7c8fdf..a45ceb7b 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.477-jdk17 +ARG JENKINS_VERSION=2.478-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 5b52ade60c4041255dc11743f26f12c6470e80f9 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 2 Oct 2024 17:42:11 +0200 Subject: [PATCH 042/235] chore(jenkins): Update Jenkins plugins (#677) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 6bb49238..48dcb2e4 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -12,7 +12,7 @@ commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1850.va_a_8c31d3158b_ credentials-binding:681.vf91669a_32e45 -credentials:1378.v81ef4269d764 +credentials:1381.v2c3a_12074da_b_ display-url-api:2.204.vf6fddd8a_8b_e9 durable-task:577.v2a_8a_4b_7c0247 echarts-api:5.5.1-1 @@ -23,7 +23,7 @@ github-api:1.321-478.vc9ce627ce001 github-branch-source:1797.v86fdb_4d57d43 github:1.40.0 gradle:2.13 -instance-identity:185.v303dc7c645f9 +instance-identity:201.vd2a_b_5a_468a_a_6 ionicons-api:74.v93d5eb_813d5f jackson2-api:2.17.0-379.v02de8ec9f64c jakarta-activation-api:2.1.3-1 @@ -35,9 +35,9 @@ jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 junit:1302.va_b_878c32eb_b_5 locale:519.v4e20f313cfa_f -mailer:472.vf7c289a_4b_420 +mailer:488.v0c9639c1a_eb_3 matrix-auth:3.2.2 -matrix-project:832.va_66e270d2946 +matrix-project:838.v4d7b_7b_f9b_d4b_ metrics:4.2.21-451.vd51df8df52ec mina-sshd-api-common:2.13.2-125.v200281b_61d59 mina-sshd-api-core:2.13.2-125.v200281b_61d59 @@ -57,7 +57,7 @@ pipeline-stage-tags-metadata:2.2214.vb_b_34b_2ea_9b_83 pipeline-stage-view:2.34 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 -resource-disposer:0.23 +resource-disposer:0.24 scm-api:696.v778d637b_a_762 script-security:1362.v67dc1f0e1b_b_3 snakeyaml-api:2.3-123.v13484c65210a_ @@ -74,7 +74,7 @@ workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3969.vdc9d3a_efcc6a_ workflow-durable-task-step:1371.vb_7cec8f3b_95e -workflow-job:1436.vfa_244484591f +workflow-job:1441.vb_2d416905b_35 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 From 43f4a93ed8c0862fef373723cb047d8fb31ff167 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:43:24 +0200 Subject: [PATCH 043/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#680) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index a45ceb7b..3a4f86ed 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.478-jdk17 +ARG JENKINS_VERSION=2.479-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 10312b4ebda5bb750247ce87a7df43448f64e582 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:44:03 +0200 Subject: [PATCH 044/235] chore: deps(dockerfile): bump golang version (#679) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index a7a09013..8223f8f5 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.23.1 +ARG GOLANG_VERSION=1.23.2 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From 490745a685109a061cc632e35d5f3326934c76d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Oct 2024 17:44:38 +0200 Subject: [PATCH 045/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#678) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 944bf163..a33b04a0 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-09-22-20-53-01 +FROM gitpod/workspace-full:2024-10-02-10-19-08 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 0f5a9407d8cd30b348a80ef06779f9b5108c60ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 6 Oct 2024 08:57:23 +0200 Subject: [PATCH 046/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#686) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index a33b04a0..d3e14de1 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-10-02-10-19-08 +FROM gitpod/workspace-full:2024-10-03-07-27-03 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 790f2e420595fb9baba6312fc2e8ef247a4c78ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 10:28:20 +0200 Subject: [PATCH 047/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#689) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index d3e14de1..a2c95e78 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-10-03-07-27-03 +FROM gitpod/workspace-full:2024-10-06-12-03-21 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 8f9a9afc274bd26b70a36ab2f9a27db57c1a06cc Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 7 Oct 2024 10:28:46 +0200 Subject: [PATCH 048/235] chore(jenkins): Update Jenkins plugins (#690) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 48dcb2e4..313b633e 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -12,13 +12,13 @@ commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1850.va_a_8c31d3158b_ credentials-binding:681.vf91669a_32e45 -credentials:1381.v2c3a_12074da_b_ +credentials:1384.vf0a_2ed06f9c6 display-url-api:2.204.vf6fddd8a_8b_e9 durable-task:577.v2a_8a_4b_7c0247 echarts-api:5.5.1-1 font-awesome-api:6.6.0-2 git-client:6.0.0 -git:5.5.1 +git:5.5.2 github-api:1.321-478.vc9ce627ce001 github-branch-source:1797.v86fdb_4d57d43 github:1.40.0 @@ -33,18 +33,18 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1302.va_b_878c32eb_b_5 +junit:1303.v05e2505656b_7 locale:519.v4e20f313cfa_f mailer:488.v0c9639c1a_eb_3 matrix-auth:3.2.2 matrix-project:838.v4d7b_7b_f9b_d4b_ metrics:4.2.21-451.vd51df8df52ec -mina-sshd-api-common:2.13.2-125.v200281b_61d59 -mina-sshd-api-core:2.13.2-125.v200281b_61d59 +mina-sshd-api-common:2.14.0-133.vcc091215a_358 +mina-sshd-api-core:2.14.0-133.vcc091215a_358 okhttp-api:4.11.0-181.v1de5b_83857df pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:349.veda_b_e2366d99 +pipeline-graph-view:354.v2f82db_3f59cc pipeline-groovy-lib:730.ve57b_34648c63 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ From 804f706a7d239538502b4070ef2b4ef74ed36ee7 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 8 Oct 2024 10:37:57 +0200 Subject: [PATCH 049/235] chore(jenkins): Update Jenkins plugins (#693) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 313b633e..02910afc 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -33,11 +33,11 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1303.v05e2505656b_7 +junit:1304.vc85a_b_ca_96613 locale:519.v4e20f313cfa_f mailer:488.v0c9639c1a_eb_3 matrix-auth:3.2.2 -matrix-project:838.v4d7b_7b_f9b_d4b_ +matrix-project:839.vff91cd7e3a_b_2 metrics:4.2.21-451.vd51df8df52ec mina-sshd-api-common:2.14.0-133.vcc091215a_358 mina-sshd-api-core:2.14.0-133.vcc091215a_358 @@ -79,4 +79,4 @@ workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 workflow-support:926.v9f4f9b_b_98c19 -ws-cleanup:0.46 +ws-cleanup:0.47 From 5c07d49655c586dc3c9e541b923a8eb68bda1a8d Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 9 Oct 2024 18:27:28 +0200 Subject: [PATCH 050/235] chore(jenkins): Update Jenkins plugins (#696) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 02910afc..676462ba 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -22,7 +22,7 @@ git:5.5.2 github-api:1.321-478.vc9ce627ce001 github-branch-source:1797.v86fdb_4d57d43 github:1.40.0 -gradle:2.13 +gradle:2.13.1 instance-identity:201.vd2a_b_5a_468a_a_6 ionicons-api:74.v93d5eb_813d5f jackson2-api:2.17.0-379.v02de8ec9f64c @@ -44,7 +44,7 @@ mina-sshd-api-core:2.14.0-133.vcc091215a_358 okhttp-api:4.11.0-181.v1de5b_83857df pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:354.v2f82db_3f59cc +pipeline-graph-view:365.vc5cf79113809 pipeline-groovy-lib:730.ve57b_34648c63 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ From 996911f864cc0dc9154dfe9fbcbf6013275bfb4b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 18:29:14 +0200 Subject: [PATCH 051/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#697) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index a2c95e78..5a2d9899 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-10-06-12-03-21 +FROM gitpod/workspace-full:2024-10-09-07-24-05 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From bd4a83ba28d5376886b3c67b0bf2d4de36f87d73 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 18:29:41 +0200 Subject: [PATCH 052/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#698) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 3a4f86ed..13e9fc8b 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.479-jdk17 +ARG JENKINS_VERSION=2.480-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From bc9c28b07a0b7bdf8e5bd73bdf17fe1dff491eee Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 17 Oct 2024 17:56:46 +0200 Subject: [PATCH 053/235] chore(jenkins): Update Jenkins plugins (#705) --- dockerfiles/plugins.txt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 676462ba..e4630e59 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -11,16 +11,16 @@ cloudbees-folder:6.955.v81e2a_35c08d3 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1850.va_a_8c31d3158b_ -credentials-binding:681.vf91669a_32e45 -credentials:1384.vf0a_2ed06f9c6 -display-url-api:2.204.vf6fddd8a_8b_e9 +credentials-binding:687.v619cb_15e923f +credentials:1389.vd7a_b_f5fa_50a_2 +display-url-api:2.209.v582ed814ff2f durable-task:577.v2a_8a_4b_7c0247 -echarts-api:5.5.1-1 +echarts-api:5.5.1-3 font-awesome-api:6.6.0-2 -git-client:6.0.0 -git:5.5.2 +git-client:6.1.0 +git:5.6.0 github-api:1.321-478.vc9ce627ce001 -github-branch-source:1797.v86fdb_4d57d43 +github-branch-source:1803.v98e3d8a_c8169 github:1.40.0 gradle:2.13.1 instance-identity:201.vd2a_b_5a_468a_a_6 @@ -35,17 +35,17 @@ jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 junit:1304.vc85a_b_ca_96613 locale:519.v4e20f313cfa_f -mailer:488.v0c9639c1a_eb_3 +mailer:489.vd4b_25144138f matrix-auth:3.2.2 -matrix-project:839.vff91cd7e3a_b_2 +matrix-project:840.v812f627cb_578 metrics:4.2.21-451.vd51df8df52ec mina-sshd-api-common:2.14.0-133.vcc091215a_358 mina-sshd-api-core:2.14.0-133.vcc091215a_358 okhttp-api:4.11.0-181.v1de5b_83857df pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:365.vc5cf79113809 -pipeline-groovy-lib:730.ve57b_34648c63 +pipeline-graph-view:367.vb_18b_b_5c0cfb_e +pipeline-groovy-lib:740.va_2701257fe8d pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2214.vb_b_34b_2ea_9b_83 @@ -58,8 +58,8 @@ pipeline-stage-view:2.34 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 resource-disposer:0.24 -scm-api:696.v778d637b_a_762 -script-security:1362.v67dc1f0e1b_b_3 +scm-api:698.v8e3b_c788f0a_6 +script-security:1365.v4778ca_84b_de5 snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f @@ -72,11 +72,11 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:3969.vdc9d3a_efcc6a_ +workflow-cps:3975.v567e2a_1ffa_22 workflow-durable-task-step:1371.vb_7cec8f3b_95e -workflow-job:1441.vb_2d416905b_35 +workflow-job:1447.v559b_c710cd2e workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 -workflow-support:926.v9f4f9b_b_98c19 +workflow-support:930.vf51d22b_ce488 ws-cleanup:0.47 From bddde0f099a37dbadabc812a3c35ae2f517751d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:57:55 +0200 Subject: [PATCH 054/235] chore: deps(dockerfile): bump image "debian" (#708) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 811b228e..27e32b71 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20240926 as prepare-stage +FROM debian:bookworm-20241016 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From 29f10bc5727482b7ff8cecf0bd08edb059b6b710 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:58:21 +0200 Subject: [PATCH 055/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#709) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 13e9fc8b..98273648 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.480-jdk17 +ARG JENKINS_VERSION=2.481-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 06ecee40cdf337937e760220fcbccc61d3bf5e5f Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 19 Oct 2024 11:19:43 +0200 Subject: [PATCH 056/235] chore(jenkins): Update Jenkins plugins (#711) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index e4630e59..22302dfe 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -33,7 +33,7 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1304.vc85a_b_ca_96613 +junit:1307.vdd5b_2646279e locale:519.v4e20f313cfa_f mailer:489.vd4b_25144138f matrix-auth:3.2.2 @@ -74,7 +74,7 @@ workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3975.v567e2a_1ffa_22 workflow-durable-task-step:1371.vb_7cec8f3b_95e -workflow-job:1447.v559b_c710cd2e +workflow-job:1459.v6c531091efcd workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 From b00a83dd6dd688809b85f8103452d24b59c44aea Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 10:55:31 +0200 Subject: [PATCH 057/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#713) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 5a2d9899..5177d91b 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-10-09-07-24-05 +FROM gitpod/workspace-full:2024-10-21-06-09-42 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From afe547ea34a69b0ed5852cf6681507ffa3a075b7 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 23 Oct 2024 21:38:39 +0200 Subject: [PATCH 058/235] chore(jenkins): Update Jenkins plugins (#720) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 22302dfe..1fc4e20a 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,7 +3,7 @@ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.78.1-248.ve27176eb_46cb_ -branch-api:2.1178.v969d9eb_c728e +branch-api:2.1182.va_e67548fb_ed2 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 @@ -36,7 +36,7 @@ jquery3-api:3.7.1-2 junit:1307.vdd5b_2646279e locale:519.v4e20f313cfa_f mailer:489.vd4b_25144138f -matrix-auth:3.2.2 +matrix-auth:3.2.3 matrix-project:840.v812f627cb_578 metrics:4.2.21-451.vd51df8df52ec mina-sshd-api-common:2.14.0-133.vcc091215a_358 @@ -45,7 +45,7 @@ okhttp-api:4.11.0-181.v1de5b_83857df pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ pipeline-graph-view:367.vb_18b_b_5c0cfb_e -pipeline-groovy-lib:740.va_2701257fe8d +pipeline-groovy-lib:744.v5b_556ee7c253 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2214.vb_b_34b_2ea_9b_83 From 65971baceb47ea4da1ecd5192a0b7e61c95f9ca8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:41:29 +0200 Subject: [PATCH 059/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#721) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 5177d91b..e3486ea3 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-10-21-06-09-42 +FROM gitpod/workspace-full:2024-10-23-18-11-15 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 47fe43287ee59404f15b23867669e59e008bd7d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:42:11 +0200 Subject: [PATCH 060/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#722) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 98273648..f932f8ed 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.481-jdk17 +ARG JENKINS_VERSION=2.482-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 082263d123bef407a3f1a836face89ab35c4a31f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:44:00 +0200 Subject: [PATCH 061/235] Bump ssh-agent version to 6.1.0 (#723) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index a7a20ebd..953c3587 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:5.48.0 + image: jenkins/ssh-agent:6.1.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 12b65b1e..faca9a6a 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:5.48.0 + image: jenkins/ssh-agent:6.1.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 150680a8..afd1d26e 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.48.0 as ssh-agent +FROM jenkins/ssh-agent:6.1.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 8223f8f5..054cb5f7 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.48.0 as ssh-agent +FROM jenkins/ssh-agent:6.1.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index e46c1cdb..1df0c70b 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.48.0 as ssh-agent +FROM jenkins/ssh-agent:6.1.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index c9cdd750..02e79abf 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.48.0 as ssh-agent +FROM jenkins/ssh-agent:6.1.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 80b3f0dd..a7d4034a 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:5.48.0 as ssh-agent +FROM jenkins/ssh-agent:6.1.0 as ssh-agent ARG NODE_MAJOR=20 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 3809fa12..eefe136e 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:5.48.0 as ssh-agent +FROM jenkins/ssh-agent:6.1.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 8b3804d633c454bdd9c4677e67e685ed5998bd3c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 24 Oct 2024 12:37:13 +0200 Subject: [PATCH 062/235] chore(jenkins): Update Jenkins plugins (#726) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1fc4e20a..77b91656 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -20,7 +20,7 @@ font-awesome-api:6.6.0-2 git-client:6.1.0 git:5.6.0 github-api:1.321-478.vc9ce627ce001 -github-branch-source:1803.v98e3d8a_c8169 +github-branch-source:1807.v50351eb_7dd13 github:1.40.0 gradle:2.13.1 instance-identity:201.vd2a_b_5a_468a_a_6 From 330237a2b83554ec5af0a22cf824fc2da3c17456 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 28 Oct 2024 10:31:28 +0100 Subject: [PATCH 063/235] chore(jenkins): Update Jenkins plugins (#730) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 77b91656..1239dcda 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,7 +3,7 @@ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.78.1-248.ve27176eb_46cb_ -branch-api:2.1182.va_e67548fb_ed2 +branch-api:2.1193.v64a_61471c489 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 @@ -38,7 +38,7 @@ locale:519.v4e20f313cfa_f mailer:489.vd4b_25144138f matrix-auth:3.2.3 matrix-project:840.v812f627cb_578 -metrics:4.2.21-451.vd51df8df52ec +metrics:4.2.21-458.vcf496cb_839e4 mina-sshd-api-common:2.14.0-133.vcc091215a_358 mina-sshd-api-core:2.14.0-133.vcc091215a_358 okhttp-api:4.11.0-181.v1de5b_83857df @@ -59,7 +59,7 @@ plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 resource-disposer:0.24 scm-api:698.v8e3b_c788f0a_6 -script-security:1365.v4778ca_84b_de5 +script-security:1366.vd44b_49a_5c85c snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f From 79e1d62e7602612537667b8188a9e38f8fae0600 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 10:58:36 +0100 Subject: [PATCH 064/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#732) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index e3486ea3..c570dc17 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-10-23-18-11-15 +FROM gitpod/workspace-full:2024-10-28-06-36-33 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From ae2e72850b5c405f7ffeb771161fd1dba82418b8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 29 Oct 2024 10:05:56 +0100 Subject: [PATCH 065/235] chore(jenkins): Update Jenkins plugins (#734) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1239dcda..4d5f45c1 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,12 +10,12 @@ checks-api:2.2.1 cloudbees-folder:6.955.v81e2a_35c08d3 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 -configuration-as-code:1850.va_a_8c31d3158b_ +configuration-as-code:1873.vea_5814ca_9c93 credentials-binding:687.v619cb_15e923f credentials:1389.vd7a_b_f5fa_50a_2 display-url-api:2.209.v582ed814ff2f durable-task:577.v2a_8a_4b_7c0247 -echarts-api:5.5.1-3 +echarts-api:5.5.1-4 font-awesome-api:6.6.0-2 git-client:6.1.0 git:5.6.0 From 585715f46d3ea3b03f5056f298b4149bb53fef10 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 30 Oct 2024 17:51:12 +0100 Subject: [PATCH 066/235] chore(jenkins): Update Jenkins plugins (#739) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 4d5f45c1..fdbca8cd 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,7 +3,7 @@ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.78.1-248.ve27176eb_46cb_ -branch-api:2.1193.v64a_61471c489 +branch-api:2.1197.vfa_d0c47c267d build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 @@ -34,7 +34,7 @@ jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 junit:1307.vdd5b_2646279e -locale:519.v4e20f313cfa_f +locale:544.v5ee877a_46b_90 mailer:489.vd4b_25144138f matrix-auth:3.2.3 matrix-project:840.v812f627cb_578 @@ -44,7 +44,7 @@ mina-sshd-api-core:2.14.0-133.vcc091215a_358 okhttp-api:4.11.0-181.v1de5b_83857df pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:367.vb_18b_b_5c0cfb_e +pipeline-graph-view:380.v3588b_7033338 pipeline-groovy-lib:744.v5b_556ee7c253 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ @@ -59,7 +59,7 @@ plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 resource-disposer:0.24 scm-api:698.v8e3b_c788f0a_6 -script-security:1366.vd44b_49a_5c85c +script-security:1367.vdf2fc45f229c snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f @@ -72,7 +72,7 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:3975.v567e2a_1ffa_22 +workflow-cps:3990.vd281dd77a_388 workflow-durable-task-step:1371.vb_7cec8f3b_95e workflow-job:1459.v6c531091efcd workflow-multibranch:795.ve0cb_1f45ca_9a_ From 9dc2814de31d6923d4064c4cdb3f448db5256028 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:52:28 +0100 Subject: [PATCH 067/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#740) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index c570dc17..f4ec3347 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-10-28-06-36-33 +FROM gitpod/workspace-full:2024-10-30-08-41-11 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 083e32b9d4e8b326bd2d01276d4a7ca41882d31a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:53:05 +0100 Subject: [PATCH 068/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#741) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index f932f8ed..b7457643 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.482-jdk17 +ARG JENKINS_VERSION=2.483-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From b7e4c14cbca71fd2b4db4ae143502feb78959c9c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:53:51 +0100 Subject: [PATCH 069/235] chore: [node-agent] Bump node version in dockerfiles/maven/Dockerfile (#742) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/node/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index a7d4034a..7d103e68 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,5 +1,5 @@ FROM jenkins/ssh-agent:6.1.0 as ssh-agent -ARG NODE_MAJOR=20 +ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl gnupg && \ From 21a36b774175c73d00772f7b8e3da0ec387f201c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 31 Oct 2024 09:18:49 +0100 Subject: [PATCH 070/235] chore(jenkins): Update Jenkins plugins (#744) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index fdbca8cd..8c89a8f1 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -44,7 +44,7 @@ mina-sshd-api-core:2.14.0-133.vcc091215a_358 okhttp-api:4.11.0-181.v1de5b_83857df pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:380.v3588b_7033338 +pipeline-graph-view:382.vb_9a_27b_7b_ea_71 pipeline-groovy-lib:744.v5b_556ee7c253 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ @@ -57,7 +57,7 @@ pipeline-stage-tags-metadata:2.2214.vb_b_34b_2ea_9b_83 pipeline-stage-view:2.34 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 -resource-disposer:0.24 +resource-disposer:0.25 scm-api:698.v8e3b_c788f0a_6 script-security:1367.vdf2fc45f229c snakeyaml-api:2.3-123.v13484c65210a_ @@ -65,7 +65,7 @@ ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 -timestamper:1.27 +timestamper:1.28 token-macro:400.v35420b_922dcb_ trilead-api:2.147.vb_73cc728a_32e variant:60.v7290fc0eb_b_cd @@ -74,9 +74,9 @@ workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3990.vd281dd77a_388 workflow-durable-task-step:1371.vb_7cec8f3b_95e -workflow-job:1459.v6c531091efcd +workflow-job:1460.v28178c1ef6e6 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 workflow-support:930.vf51d22b_ce488 -ws-cleanup:0.47 +ws-cleanup:0.48 From 3d671b5d138839336517f8aa507b75bc3738c401 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 09:16:13 +0100 Subject: [PATCH 071/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#753) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index f4ec3347..cc6c81be 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-10-30-08-41-11 +FROM gitpod/workspace-full:2024-11-03-15-52-49 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From ab902eb911118c5f15ddd8be9936faf6ed813523 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 6 Nov 2024 09:46:34 +0100 Subject: [PATCH 072/235] chore(jenkins): Update Jenkins plugins (#755) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 8c89a8f1..a36023b2 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,14 +3,14 @@ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.78.1-248.ve27176eb_46cb_ -branch-api:2.1197.vfa_d0c47c267d +branch-api:2.1199.v20ee565260fb_ build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 cloudbees-folder:6.955.v81e2a_35c08d3 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 -configuration-as-code:1873.vea_5814ca_9c93 +configuration-as-code:1887.v9e47623cb_043 credentials-binding:687.v619cb_15e923f credentials:1389.vd7a_b_f5fa_50a_2 display-url-api:2.209.v582ed814ff2f @@ -78,5 +78,5 @@ workflow-job:1460.v28178c1ef6e6 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 -workflow-support:930.vf51d22b_ce488 +workflow-support:932.vb_555de1b_a_b_94 ws-cleanup:0.48 From d34b701f9782f2e2a1257cf89115787d09a62b62 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 6 Nov 2024 09:55:43 +0100 Subject: [PATCH 073/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#756) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index b7457643..2b5caa78 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.483-jdk17 +ARG JENKINS_VERSION=2.484-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 5e6595e52efa0b2782fa6b9a30a108a2ee3ebb43 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 7 Nov 2024 09:56:47 +0100 Subject: [PATCH 074/235] chore(jenkins): Update Jenkins plugins (#760) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index a36023b2..9b095abb 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,7 +3,7 @@ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.78.1-248.ve27176eb_46cb_ -branch-api:2.1199.v20ee565260fb_ +branch-api:2.1200.v4b_a_3da_2eb_db_4 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 From 90a870258d2d31d2e1f1fee07a70ecb13c2b7a9d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 09:57:38 +0100 Subject: [PATCH 075/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#761) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index cc6c81be..a11f1e67 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-11-03-15-52-49 +FROM gitpod/workspace-full:2024-11-06-20-18-15 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 5a6925ad405f06c79a262678904062e8f6873eac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 09:58:00 +0100 Subject: [PATCH 076/235] chore: deps(dockerfile): bump golang version (#762) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 054cb5f7..c3a1bbcd 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.23.2 +ARG GOLANG_VERSION=1.23.3 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From a3c0006a2421f8bfa0e7ae49a68223c0e0dda62b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 12 Nov 2024 10:24:15 +0100 Subject: [PATCH 077/235] chore(jenkins): Update Jenkins plugins (#772) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 9b095abb..2e084cc4 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -33,8 +33,8 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1307.vdd5b_2646279e -locale:544.v5ee877a_46b_90 +junit:1309.v0078b_fecd6ed +locale:546.v1609030511ca_ mailer:489.vd4b_25144138f matrix-auth:3.2.3 matrix-project:840.v812f627cb_578 @@ -73,8 +73,8 @@ workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3990.vd281dd77a_388 -workflow-durable-task-step:1371.vb_7cec8f3b_95e -workflow-job:1460.v28178c1ef6e6 +workflow-durable-task-step:1378.v6a_3e903058a_3 +workflow-job:1468.vcf4f5ee92395 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 From 795eed189f4f88c3545562133e61450c52f41d6b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 10:52:39 +0100 Subject: [PATCH 078/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#774) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index a11f1e67..b0d1660b 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-11-06-20-18-15 +FROM gitpod/workspace-full:2024-11-11-13-51-43 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 4327afefb7a72ab8b1a0d31d6eb7f1b48af71284 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 10:53:23 +0100 Subject: [PATCH 079/235] chore: deps(dockerfile): bump image "debian" (#773) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 27e32b71..c1edf763 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20241016 as prepare-stage +FROM debian:bookworm-20241111 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From a2dee38a5c739daa8f14e04bca2db5b102f4c0b8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 14 Nov 2024 14:12:54 +0100 Subject: [PATCH 080/235] chore(jenkins): Update Jenkins plugins (#776) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 2e084cc4..20c9d14c 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -48,18 +48,18 @@ pipeline-graph-view:382.vb_9a_27b_7b_ea_71 pipeline-groovy-lib:744.v5b_556ee7c253 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ -pipeline-model-api:2.2214.vb_b_34b_2ea_9b_83 -pipeline-model-definition:2.2214.vb_b_34b_2ea_9b_83 -pipeline-model-extensions:2.2214.vb_b_34b_2ea_9b_83 +pipeline-model-api:2.2218.v56d0cda_37c72 +pipeline-model-definition:2.2218.v56d0cda_37c72 +pipeline-model-extensions:2.2218.v56d0cda_37c72 pipeline-rest-api:2.34 pipeline-stage-step:312.v8cd10304c27a_ -pipeline-stage-tags-metadata:2.2214.vb_b_34b_2ea_9b_83 +pipeline-stage-tags-metadata:2.2218.v56d0cda_37c72 pipeline-stage-view:2.34 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 resource-disposer:0.25 scm-api:698.v8e3b_c788f0a_6 -script-security:1367.vdf2fc45f229c +script-security:1369.v9b_98a_4e95b_2d snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f @@ -72,7 +72,7 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:3990.vd281dd77a_388 +workflow-cps:3993.v3e20a_37282f8 workflow-durable-task-step:1378.v6a_3e903058a_3 workflow-job:1468.vcf4f5ee92395 workflow-multibranch:795.ve0cb_1f45ca_9a_ From 233baecceeb6e9559e0024fda1bde4b521e8c21a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 14:14:08 +0100 Subject: [PATCH 081/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#777) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 2b5caa78..acb7a625 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.484-jdk17 +ARG JENKINS_VERSION=2.485-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 79a0027f56ecb0d9d48002e57805a73d343fd6b6 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 17 Nov 2024 21:29:56 +0100 Subject: [PATCH 082/235] chore(jenkins): Update Jenkins plugins (#780) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 20c9d14c..509b8eca 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,7 +7,7 @@ branch-api:2.1200.v4b_a_3da_2eb_db_4 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 -cloudbees-folder:6.955.v81e2a_35c08d3 +cloudbees-folder:6.959.v4ed5cc9e2dd4 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1887.v9e47623cb_043 From 3ffb9fb31125538f7aa1103c6cc46631030d5da0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 21:31:04 +0100 Subject: [PATCH 083/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#781) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index b0d1660b..d9f630eb 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-11-11-13-51-43 +FROM gitpod/workspace-full:2024-11-15-13-22-52 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From d5997f1c3e8bcb5fe6ecf92327963b490ed1d7c1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 10:05:14 +0100 Subject: [PATCH 084/235] Bump ssh-agent version to 6.2.0 (#783) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 953c3587..d5eac9b3 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.1.0 + image: jenkins/ssh-agent:6.2.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index faca9a6a..60ac4d43 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.1.0 + image: jenkins/ssh-agent:6.2.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index afd1d26e..aee83f1a 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.1.0 as ssh-agent +FROM jenkins/ssh-agent:6.2.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index c3a1bbcd..4c2ef774 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.1.0 as ssh-agent +FROM jenkins/ssh-agent:6.2.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 1df0c70b..28d90749 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.1.0 as ssh-agent +FROM jenkins/ssh-agent:6.2.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 02e79abf..394c01de 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.1.0 as ssh-agent +FROM jenkins/ssh-agent:6.2.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 7d103e68..49cbab57 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.1.0 as ssh-agent +FROM jenkins/ssh-agent:6.2.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index eefe136e..bd4a0c09 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.1.0 as ssh-agent +FROM jenkins/ssh-agent:6.2.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From aead10210377fe32efdc8c88f4d5162685de21a7 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 19 Nov 2024 11:32:09 +0100 Subject: [PATCH 085/235] chore(jenkins): Update Jenkins plugins (#785) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 509b8eca..38f4361a 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -34,7 +34,7 @@ jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 junit:1309.v0078b_fecd6ed -locale:546.v1609030511ca_ +locale:549.v824602fe3393 mailer:489.vd4b_25144138f matrix-auth:3.2.3 matrix-project:840.v812f627cb_578 From dd8fdd4bf79d564bb587d54d1f83eb991da072a1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 10:02:34 +0100 Subject: [PATCH 086/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#790) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index acb7a625..1b94a971 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.485-jdk17 +ARG JENKINS_VERSION=2.486-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 93c018be0ab2edc78be539b61a559a2e2752775e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 10:03:07 +0100 Subject: [PATCH 087/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#789) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index d9f630eb..b1fd2c9e 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-11-15-13-22-52 +FROM gitpod/workspace-full:2024-11-20-08-19-55 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From e6e475be0d752b10f9cf0b106747a5bb18440303 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 18:05:24 +0100 Subject: [PATCH 088/235] chore(jenkins): Update Jenkins plugins (#803) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 38f4361a..ad312e5f 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ checks-api:2.2.1 cloudbees-folder:6.959.v4ed5cc9e2dd4 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 -configuration-as-code:1887.v9e47623cb_043 +configuration-as-code:1897.v79281e066ea_7 credentials-binding:687.v619cb_15e923f credentials:1389.vd7a_b_f5fa_50a_2 display-url-api:2.209.v582ed814ff2f @@ -72,11 +72,11 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:3993.v3e20a_37282f8 -workflow-durable-task-step:1378.v6a_3e903058a_3 +workflow-cps:3996.va_f5c1799f978 +workflow-durable-task-step:1398.vf6c9e89e5988 workflow-job:1468.vcf4f5ee92395 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 -workflow-support:932.vb_555de1b_a_b_94 +workflow-support:936.v9fa_77211ca_e1 ws-cleanup:0.48 From 67c3ca1c39f425ae2b8090a94dba62fd7ded5da4 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 18:06:37 +0100 Subject: [PATCH 089/235] Update dependabot.yml (#804) --- .github/dependabot.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1825becc..a350a4d1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -40,6 +40,11 @@ updates: open-pull-requests-limit: 10 - package-ecosystem: docker directory: "./dockerfiles/sidekick" + schedule: + interval: weekly + open-pull-requests-limit: 10 + - package-ecosystem: docker + directory: "./dockerfiles/agent-discovery" schedule: interval: weekly open-pull-requests-limit: 10 @@ -52,4 +57,4 @@ updates: directory: "./dockerfiles/golang" schedule: interval: weekly - open-pull-requests-limit: 10 \ No newline at end of file + open-pull-requests-limit: 10 From 60033417d283ad041d4f6ed30a8bf50f5c9f97ca Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 18:10:28 +0100 Subject: [PATCH 090/235] Update Dockerfile --- dockerfiles/agent-discovery/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/agent-discovery/Dockerfile b/dockerfiles/agent-discovery/Dockerfile index 21a2cb99..aaa52316 100644 --- a/dockerfiles/agent-discovery/Dockerfile +++ b/dockerfiles/agent-discovery/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20240722-slim as prepare-stage +FROM debian:bookworm-20241016-slim as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From fed6d0cb5d0e89d623ddf9b83b8c345a2be6efe1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 18:11:01 +0100 Subject: [PATCH 091/235] Update find-name.sh --- dockerfiles/agent-discovery/find-name.sh | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/dockerfiles/agent-discovery/find-name.sh b/dockerfiles/agent-discovery/find-name.sh index 7d4efb7b..0471321d 100644 --- a/dockerfiles/agent-discovery/find-name.sh +++ b/dockerfiles/agent-discovery/find-name.sh @@ -79,15 +79,31 @@ while true; do sleep 2 # Wait for 5 seconds before the next iteration of the loop. done +## Check if jenkins_controller is reachable, otherwise fall back to multi_jenkins_controller +JENKINS_CONTROLLER="jenkins_controller" +if ! curl -s -f --max-time 60 "http://${JENKINS_CONTROLLER}:8080/login" > /dev/null; then + echo "Primary controller not reachable, falling back to multi controller..." + JENKINS_CONTROLLER="multi_jenkins_controller" + if ! curl -s -f --max-time 60 "http://${JENKINS_CONTROLLER}:8080/login" > /dev/null; then + echo "Error: Neither primary nor multi controller is reachable" + exit 1 + fi +fi + # Check If Jenkins is running or not # If the message is found, awk exits with a non-zero status (1), and the loop continues. # If the message is not found, the loop exits, and the "Jenkins is running" message is displayed. -timeout 60 bash -c 'until curl -s -f http://jenkins_controller:8080/login > /dev/null; do sleep 5; done' && echo "Jenkins is running" || echo "Jenkins is not running" +timeout 60 bash -c "until curl -s -f http://${JENKINS_CONTROLLER}:8080/login > /dev/null; do sleep 5; done" && echo "Jenkins is running" || echo "Jenkins is not running" +# The colon (:) is a no-op command in Bash, which means it does nothing and always returns a true exit status. It is often used as a placeholder or to evaluate expressions without executing any commands. +# The ${JENKINS_STARTUP_TIMEOUT:=60} part is a parameter expansion. It checks if the JENKINS_STARTUP_TIMEOUT variable is set and not null. If it is not set, it assigns the value 60 to JENKINS_STARTUP_TIMEOUT +: "${JENKINS_STARTUP_TIMEOUT:=60}" # Default to 60 seconds if not set +timeout "${JENKINS_STARTUP_TIMEOUT}" bash -c "until curl -s -f http://${JENKINS_CONTROLLER}:8080/login > /dev/null; do sleep 5; done" && echo "Jenkins is running" || echo "Jenkins is not running" + echo "Jenkins is ready" # Get the Jenkins version -JENKINS_VERSION=$(curl -s -I -k http://admin:admin@jenkins_controller:8080 | grep -i '^X-Jenkins:' | awk '{print $2}') +JENKINS_VERSION=$(curl -s -I -k http://admin:admin@$JENKINS_CONTROLLER:8080 | grep -i '^X-Jenkins:' | awk '{print $2}') echo "Jenkins version is: $JENKINS_VERSION" # Use the token in the curl command to reload the configuration -# curl -X POST "http://admin:admin@jenkins_controller:8080/reload-configuration-as-code/?casc-reload-token=$JCASC_TOKEN" -curl -X POST "http://admin:admin@jenkins_controller:8080/reload-configuration-as-code/?casc-reload-token=thisisnotsecure" +# curl -X POST "http://admin:admin@$JENKINS_CONTROLLER:8080/reload-configuration-as-code/?casc-reload-token=$JCASC_TOKEN" +curl -X POST "http://admin:admin@$JENKINS_CONTROLLER:8080/reload-configuration-as-code/?casc-reload-token=thisisnotsecure" From 4c1673c311dd546418eb32885fd117adb20586aa Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 27 Nov 2024 09:16:20 +0100 Subject: [PATCH 092/235] chore(jenkins): Update Jenkins plugins (#808) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index ad312e5f..c1d32419 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -14,7 +14,7 @@ configuration-as-code:1897.v79281e066ea_7 credentials-binding:687.v619cb_15e923f credentials:1389.vd7a_b_f5fa_50a_2 display-url-api:2.209.v582ed814ff2f -durable-task:577.v2a_8a_4b_7c0247 +durable-task:581.v299a_5609d767 echarts-api:5.5.1-4 font-awesome-api:6.6.0-2 git-client:6.1.0 @@ -61,7 +61,7 @@ resource-disposer:0.25 scm-api:698.v8e3b_c788f0a_6 script-security:1369.v9b_98a_4e95b_2d snakeyaml-api:2.3-123.v13484c65210a_ -ssh-credentials:343.v884f71d78167 +ssh-credentials:349.vb_8b_6b_9709f5b_ ssh-slaves:2.973.v0fa_8c0dea_f9f sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 From 1c339107ea23c9bdc5caebaef057218f6dfa9e82 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 27 Nov 2024 09:17:34 +0100 Subject: [PATCH 093/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#810) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index b1fd2c9e..64a6b8fe 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-11-20-08-19-55 +FROM gitpod/workspace-full:2024-11-26-08-43-19 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 7c6edc423cc45e40411e2909c14541a4f7169c95 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Nov 2024 09:24:26 +0100 Subject: [PATCH 094/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#814) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 64a6b8fe..b1681261 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-11-26-08-43-19 +FROM gitpod/workspace-full:2024-11-27-08-38-34 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From da63779eb5b7bd31d2647356f9a014b3b2d76dc2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Nov 2024 09:25:25 +0100 Subject: [PATCH 095/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#816) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 1b94a971..082ab882 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.486-jdk17 +ARG JENKINS_VERSION=2.487-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 289eb2c374e5a77a515fa93bbbc1dee27cd919c4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 28 Nov 2024 09:25:52 +0100 Subject: [PATCH 096/235] Bump ssh-agent version to 6.3.0 (#817) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index d5eac9b3..7ef4ddc4 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.2.0 + image: jenkins/ssh-agent:6.3.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 60ac4d43..ac83992f 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.2.0 + image: jenkins/ssh-agent:6.3.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index aee83f1a..8722db70 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.2.0 as ssh-agent +FROM jenkins/ssh-agent:6.3.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 4c2ef774..7e411b08 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.2.0 as ssh-agent +FROM jenkins/ssh-agent:6.3.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 28d90749..0b7aead1 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.2.0 as ssh-agent +FROM jenkins/ssh-agent:6.3.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 394c01de..424a7611 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.2.0 as ssh-agent +FROM jenkins/ssh-agent:6.3.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 49cbab57..27f02565 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.2.0 as ssh-agent +FROM jenkins/ssh-agent:6.3.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index bd4a0c09..86c02fd9 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.2.0 as ssh-agent +FROM jenkins/ssh-agent:6.3.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From aff8c4eaad2b6844fb1606820d6e9efd5f4c189e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 09:26:39 +0100 Subject: [PATCH 097/235] Bump ssh-agent version to 6.4.0 (#821) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 7ef4ddc4..d0bcc9ed 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.3.0 + image: jenkins/ssh-agent:6.4.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index ac83992f..e137eca3 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.3.0 + image: jenkins/ssh-agent:6.4.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 8722db70..f82cdf17 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.3.0 as ssh-agent +FROM jenkins/ssh-agent:6.4.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 7e411b08..9635dbbf 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.3.0 as ssh-agent +FROM jenkins/ssh-agent:6.4.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 0b7aead1..94cbba41 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.3.0 as ssh-agent +FROM jenkins/ssh-agent:6.4.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 424a7611..5d305295 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.3.0 as ssh-agent +FROM jenkins/ssh-agent:6.4.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 27f02565..08679521 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.3.0 as ssh-agent +FROM jenkins/ssh-agent:6.4.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 86c02fd9..e74338a6 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.3.0 as ssh-agent +FROM jenkins/ssh-agent:6.4.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From a0c8ad50a73f0feeb759bdb6513bb6d08a314fba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 09:27:05 +0100 Subject: [PATCH 098/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#820) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index b1681261..f273fce0 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-11-27-08-38-34 +FROM gitpod/workspace-full:2024-12-01-10-02-37 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 14d647404abe646a421ae515d9e1281cb8371073 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 3 Dec 2024 08:44:48 +0100 Subject: [PATCH 099/235] chore(jenkins): Update Jenkins plugins (#827) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index c1d32419..13b0653b 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ checks-api:2.2.1 cloudbees-folder:6.959.v4ed5cc9e2dd4 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 -configuration-as-code:1897.v79281e066ea_7 +configuration-as-code:1903.v004d55388f30 credentials-binding:687.v619cb_15e923f credentials:1389.vd7a_b_f5fa_50a_2 display-url-api:2.209.v582ed814ff2f @@ -72,9 +72,9 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:3996.va_f5c1799f978 +workflow-cps:4000.v5198556e9cea_ workflow-durable-task-step:1398.vf6c9e89e5988 -workflow-job:1468.vcf4f5ee92395 +workflow-job:1472.ve4d5eca_143c4 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 From 41e362ef78d167a7fa3e56c4314d0a0910dbe263 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 08:47:40 +0100 Subject: [PATCH 100/235] chore: deps(dockerfile): bump image "debian" (#829) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index c1edf763..6c173443 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20241111 as prepare-stage +FROM debian:bookworm-20241202 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From 585453516ed7515382efc5fefcc9f691584a4ca8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 08:47:59 +0100 Subject: [PATCH 101/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#830) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index f273fce0..f50eeb91 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-12-01-10-02-37 +FROM gitpod/workspace-full:2024-12-02-17-20-59 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 3ed3d329aa7022d2cd5e8ce11396524fe6c47061 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 6 Dec 2024 09:28:09 +0100 Subject: [PATCH 102/235] chore(jenkins): Update Jenkins plugins (#835) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 13b0653b..fe1caf61 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,7 +7,7 @@ branch-api:2.1200.v4b_a_3da_2eb_db_4 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 -cloudbees-folder:6.959.v4ed5cc9e2dd4 +cloudbees-folder:6.963.v6edc0fc71472 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1903.v004d55388f30 @@ -33,7 +33,7 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1309.v0078b_fecd6ed +junit:1311.v39e1716e4eb_e locale:549.v824602fe3393 mailer:489.vd4b_25144138f matrix-auth:3.2.3 From e6b0c0d1e489ca0358777320a686299f477f783f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 09:29:29 +0100 Subject: [PATCH 103/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#837) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index f50eeb91..24914abe 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-12-02-17-20-59 +FROM gitpod/workspace-full:2024-12-04-13-05-19 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 76b1421e4807da909c2c2fe907e406a6f01985b4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 09:30:23 +0100 Subject: [PATCH 104/235] chore: deps(dockerfile): bump golang version (#838) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 9635dbbf..bbf7826d 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.23.3 +ARG GOLANG_VERSION=1.23.4 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From a912c73366bfa5a2ed3ff39c43836fc75a1a63ad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 09:31:15 +0100 Subject: [PATCH 105/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#839) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 082ab882..62f50a05 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.487-jdk17 +ARG JENKINS_VERSION=2.488-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From cb270d836943ee5ebc86e2400c4650ccd543a74b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 09:42:01 +0100 Subject: [PATCH 106/235] Bump ssh-agent version to 6.5.0 (#841) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index d0bcc9ed..27bbd107 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.4.0 + image: jenkins/ssh-agent:6.5.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index e137eca3..e949073d 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.4.0 + image: jenkins/ssh-agent:6.5.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index f82cdf17..faeb2421 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.4.0 as ssh-agent +FROM jenkins/ssh-agent:6.5.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index bbf7826d..71ba3263 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.4.0 as ssh-agent +FROM jenkins/ssh-agent:6.5.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 94cbba41..6ae67b60 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.4.0 as ssh-agent +FROM jenkins/ssh-agent:6.5.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 5d305295..358dfd23 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.4.0 as ssh-agent +FROM jenkins/ssh-agent:6.5.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 08679521..228e1e98 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.4.0 as ssh-agent +FROM jenkins/ssh-agent:6.5.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index e74338a6..ec8cb828 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.4.0 as ssh-agent +FROM jenkins/ssh-agent:6.5.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 740149e137e9d8600286c606d32b15a3266cbde9 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 11 Dec 2024 10:34:19 +0100 Subject: [PATCH 107/235] chore(jenkins): Update Jenkins plugins (#845) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index fe1caf61..752977c2 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,12 +7,12 @@ branch-api:2.1200.v4b_a_3da_2eb_db_4 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 -cloudbees-folder:6.963.v6edc0fc71472 +cloudbees-folder:6.969.v7d22c6eb_fde1 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1903.v004d55388f30 credentials-binding:687.v619cb_15e923f -credentials:1389.vd7a_b_f5fa_50a_2 +credentials:1393.v6017143c1763 display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 echarts-api:5.5.1-4 From 59ce0cca412c2e253cf04c3e41dbd1ffb8e578f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 10:48:04 +0100 Subject: [PATCH 108/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#847) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 62f50a05..5331339c 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.488-jdk17 +ARG JENKINS_VERSION=2.489-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 3d575c49ee5f0a1ee0a6fc7696bd73d68e583339 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 10:48:26 +0100 Subject: [PATCH 109/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#846) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 24914abe..04fc0965 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-12-04-13-05-19 +FROM gitpod/workspace-full:2024-12-11-07-51-54 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 9a6037b08c2870f1ed2c672d413329e26bb05f03 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 12 Dec 2024 10:47:16 +0100 Subject: [PATCH 110/235] chore(jenkins): Update Jenkins plugins (#850) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 752977c2..efaf2907 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,7 +7,7 @@ branch-api:2.1200.v4b_a_3da_2eb_db_4 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 -cloudbees-folder:6.969.v7d22c6eb_fde1 +cloudbees-folder:6.971.v9a_984fd08864 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1903.v004d55388f30 @@ -39,8 +39,8 @@ mailer:489.vd4b_25144138f matrix-auth:3.2.3 matrix-project:840.v812f627cb_578 metrics:4.2.21-458.vcf496cb_839e4 -mina-sshd-api-common:2.14.0-133.vcc091215a_358 -mina-sshd-api-core:2.14.0-133.vcc091215a_358 +mina-sshd-api-common:2.14.0-136.v4d2b_0853615e +mina-sshd-api-core:2.14.0-136.v4d2b_0853615e okhttp-api:4.11.0-181.v1de5b_83857df pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ From c8e9d4afde471aabfc89ae084c4cdfd8787d3c11 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 17 Dec 2024 10:57:02 +0100 Subject: [PATCH 111/235] chore(jenkins): Update Jenkins plugins (#856) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index efaf2907..4306755b 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,7 +7,7 @@ branch-api:2.1200.v4b_a_3da_2eb_db_4 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 -cloudbees-folder:6.971.v9a_984fd08864 +cloudbees-folder:6.975.v4161e479479f commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1903.v004d55388f30 @@ -22,7 +22,7 @@ git:5.6.0 github-api:1.321-478.vc9ce627ce001 github-branch-source:1807.v50351eb_7dd13 github:1.40.0 -gradle:2.13.1 +gradle:2.14 instance-identity:201.vd2a_b_5a_468a_a_6 ionicons-api:74.v93d5eb_813d5f jackson2-api:2.17.0-379.v02de8ec9f64c @@ -62,7 +62,7 @@ scm-api:698.v8e3b_c788f0a_6 script-security:1369.v9b_98a_4e95b_2d snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:349.vb_8b_6b_9709f5b_ -ssh-slaves:2.973.v0fa_8c0dea_f9f +ssh-slaves:2.1010.v64ec48721231 sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 timestamper:1.28 From ff242d056ec34a8dd4a8b9ab8a586f57bfd438ed Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 25 Dec 2024 10:02:18 +0100 Subject: [PATCH 112/235] chore(jenkins): Update Jenkins plugins (#868) --- dockerfiles/plugins.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 4306755b..2b2a840b 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,16 +3,16 @@ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.78.1-248.ve27176eb_46cb_ -branch-api:2.1200.v4b_a_3da_2eb_db_4 +branch-api:2.1202.vc51412f3ed84 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 cloudbees-folder:6.975.v4161e479479f commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 -configuration-as-code:1903.v004d55388f30 +configuration-as-code:1909.vb_b_f59a_27d013 credentials-binding:687.v619cb_15e923f -credentials:1393.v6017143c1763 +credentials:1405.vb_cda_74a_f8974 display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 echarts-api:5.5.1-4 @@ -33,7 +33,7 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1311.v39e1716e4eb_e +junit:1312.v1a_235a_b_94a_31 locale:549.v824602fe3393 mailer:489.vd4b_25144138f matrix-auth:3.2.3 @@ -41,7 +41,7 @@ matrix-project:840.v812f627cb_578 metrics:4.2.21-458.vcf496cb_839e4 mina-sshd-api-common:2.14.0-136.v4d2b_0853615e mina-sshd-api-core:2.14.0-136.v4d2b_0853615e -okhttp-api:4.11.0-181.v1de5b_83857df +okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ pipeline-graph-view:382.vb_9a_27b_7b_ea_71 @@ -62,7 +62,7 @@ scm-api:698.v8e3b_c788f0a_6 script-security:1369.v9b_98a_4e95b_2d snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:349.vb_8b_6b_9709f5b_ -ssh-slaves:2.1010.v64ec48721231 +ssh-slaves:3.1021.va_cc11b_de26a_e sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 timestamper:1.28 @@ -72,7 +72,7 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:4000.v5198556e9cea_ +workflow-cps:4002.v80ca_d0f47d7f workflow-durable-task-step:1398.vf6c9e89e5988 workflow-job:1472.ve4d5eca_143c4 workflow-multibranch:795.ve0cb_1f45ca_9a_ From cfce13c75b91e111bb7a4361373f94df6c73598a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 10:03:19 +0100 Subject: [PATCH 113/235] chore: deps(dockerfile): bump image "debian" (#869) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 6c173443..35566ffe 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20241202 as prepare-stage +FROM debian:bookworm-20241223 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From d109e9476a716dc09a6b7189395ab2456ff47778 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 25 Dec 2024 10:04:01 +0100 Subject: [PATCH 114/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#870) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 5331339c..67fc929b 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.489-jdk17 +ARG JENKINS_VERSION=2.491-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 53ddbf5a9879e17c1e3caf3e68df7f258c39cc97 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 28 Dec 2024 09:38:24 +0100 Subject: [PATCH 115/235] chore(jenkins): Update Jenkins plugins (#874) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 2b2a840b..896ea28e 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -15,7 +15,7 @@ credentials-binding:687.v619cb_15e923f credentials:1405.vb_cda_74a_f8974 display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 -echarts-api:5.5.1-4 +echarts-api:5.5.1-5 font-awesome-api:6.6.0-2 git-client:6.1.0 git:5.6.0 @@ -39,8 +39,8 @@ mailer:489.vd4b_25144138f matrix-auth:3.2.3 matrix-project:840.v812f627cb_578 metrics:4.2.21-458.vcf496cb_839e4 -mina-sshd-api-common:2.14.0-136.v4d2b_0853615e -mina-sshd-api-core:2.14.0-136.v4d2b_0853615e +mina-sshd-api-common:2.14.0-138.v6341ee58e1df +mina-sshd-api-core:2.14.0-138.v6341ee58e1df okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ From 1b9d2c77527e0ef378ce9e98c5ff4cb4906c79cb Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 31 Dec 2024 09:53:29 +0100 Subject: [PATCH 116/235] chore(jenkins): Update Jenkins plugins (#878) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 896ea28e..5d07da18 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -2,7 +2,7 @@ ant:511.v0a_a_1a_334f41b_ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 -bouncycastle-api:2.30.1.78.1-248.ve27176eb_46cb_ +bouncycastle-api:2.30.1.79-254.vfdb_814e7791e branch-api:2.1202.vc51412f3ed84 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 From 3c543c4135836ccf9033c2ff7b96e67a9cab0663 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 3 Jan 2025 09:39:21 +0100 Subject: [PATCH 117/235] chore(jenkins): Update Jenkins plugins (#881) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 5d07da18..2fbb63f0 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -18,7 +18,7 @@ durable-task:581.v299a_5609d767 echarts-api:5.5.1-5 font-awesome-api:6.6.0-2 git-client:6.1.0 -git:5.6.0 +git:5.7.0 github-api:1.321-478.vc9ce627ce001 github-branch-source:1807.v50351eb_7dd13 github:1.40.0 @@ -45,7 +45,7 @@ okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ pipeline-graph-view:382.vb_9a_27b_7b_ea_71 -pipeline-groovy-lib:744.v5b_556ee7c253 +pipeline-groovy-lib:745.vdf6077913de0 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2218.v56d0cda_37c72 From a91cc44c81d60822a19d18fac7f6f066d6a09434 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 3 Jan 2025 09:44:32 +0100 Subject: [PATCH 118/235] Bump ssh-agent version to 6.6.0 (#882) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 27bbd107..751d88e4 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.5.0 + image: jenkins/ssh-agent:6.6.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index e949073d..61f3c182 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.5.0 + image: jenkins/ssh-agent:6.6.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index faeb2421..5298ff32 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.5.0 as ssh-agent +FROM jenkins/ssh-agent:6.6.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 71ba3263..05fb1701 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.5.0 as ssh-agent +FROM jenkins/ssh-agent:6.6.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 6ae67b60..569a3c98 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.5.0 as ssh-agent +FROM jenkins/ssh-agent:6.6.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 358dfd23..a82f386d 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.5.0 as ssh-agent +FROM jenkins/ssh-agent:6.6.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 228e1e98..74556f5d 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.5.0 as ssh-agent +FROM jenkins/ssh-agent:6.6.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index ec8cb828..f20e64ba 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.5.0 as ssh-agent +FROM jenkins/ssh-agent:6.6.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 8814263d62778cd2d70f4c57484955a5c2e79f70 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 5 Jan 2025 09:43:34 +0100 Subject: [PATCH 119/235] chore(jenkins): Update Jenkins plugins (#884) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 2fbb63f0..a83a4511 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ checks-api:2.2.1 cloudbees-folder:6.975.v4161e479479f commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 -configuration-as-code:1909.vb_b_f59a_27d013 +configuration-as-code:1915.vcdd0a_d0d2625 credentials-binding:687.v619cb_15e923f credentials:1405.vb_cda_74a_f8974 display-url-api:2.209.v582ed814ff2f @@ -72,7 +72,7 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:4002.v80ca_d0f47d7f +workflow-cps:4003.vf9c56141493e workflow-durable-task-step:1398.vf6c9e89e5988 workflow-job:1472.ve4d5eca_143c4 workflow-multibranch:795.ve0cb_1f45ca_9a_ From 2dfe9b764a07b6843a566409b8dbe97923bf2973 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 7 Jan 2025 11:57:24 +0100 Subject: [PATCH 120/235] chore(jenkins): Update Jenkins plugins (#887) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index a83a4511..fd241445 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -72,7 +72,7 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:4003.vf9c56141493e +workflow-cps:4007.vd705fc76a_34e workflow-durable-task-step:1398.vf6c9e89e5988 workflow-job:1472.ve4d5eca_143c4 workflow-multibranch:795.ve0cb_1f45ca_9a_ From 4b217df8d914c9cb177981404109630436dcc45f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 11:58:37 +0100 Subject: [PATCH 121/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#888) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 04fc0965..62f4fc78 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2024-12-11-07-51-54 +FROM gitpod/workspace-full:2025-01-06-12-38-45 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 1ed6e75e594d3267bc3104b03a2467b770ea4d6f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Jan 2025 17:21:00 +0100 Subject: [PATCH 122/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#889) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 67fc929b..6bac43cc 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.491-jdk17 +ARG JENKINS_VERSION=2.492-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 41bfbc578c8a994ace87a7089feb5ba40dac06b8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 8 Jan 2025 10:44:18 +0100 Subject: [PATCH 123/235] chore(jenkins): Update Jenkins plugins (#892) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index fd241445..7fb6b5ab 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,7 +3,7 @@ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.79-254.vfdb_814e7791e -branch-api:2.1202.vc51412f3ed84 +branch-api:2.1206.vd9f35001c95c build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 @@ -74,7 +74,7 @@ workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:4007.vd705fc76a_34e workflow-durable-task-step:1398.vf6c9e89e5988 -workflow-job:1472.ve4d5eca_143c4 +workflow-job:1476.v90f02a_225559 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 From 1bf008bf6b1bba0144af529153056050890a3db7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 10:45:38 +0100 Subject: [PATCH 124/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#894) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 62f4fc78..d47325ee 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-01-06-12-38-45 +FROM gitpod/workspace-full:2025-01-08-07-57-03 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 836c9390f68b7c590ef0a538103a811c997d38a5 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 10 Jan 2025 09:34:42 +0100 Subject: [PATCH 125/235] chore(jenkins): Update Jenkins plugins (#897) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 7fb6b5ab..7d0eb008 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,7 +7,7 @@ branch-api:2.1206.vd9f35001c95c build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 -cloudbees-folder:6.975.v4161e479479f +cloudbees-folder:6.976.v4dc79fb_c458d commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1915.vcdd0a_d0d2625 From 84ff7bb0d421dc63fe5dfbae9561a3219b38c6fe Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 14 Jan 2025 11:04:26 +0100 Subject: [PATCH 126/235] chore(jenkins): Update Jenkins plugins (#908) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 7d0eb008..ffece5c7 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -46,7 +46,7 @@ pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ pipeline-graph-view:382.vb_9a_27b_7b_ea_71 pipeline-groovy-lib:745.vdf6077913de0 -pipeline-input-step:495.ve9c153f6067b_ +pipeline-input-step:508.v584c0e9a_2177 pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2218.v56d0cda_37c72 pipeline-model-definition:2.2218.v56d0cda_37c72 @@ -73,7 +73,7 @@ workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:4007.vd705fc76a_34e -workflow-durable-task-step:1398.vf6c9e89e5988 +workflow-durable-task-step:1400.v7a_fd50a_091de workflow-job:1476.v90f02a_225559 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 From 41d93ffd9267b4d1fce2c28914ccfba83651d3f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:06:01 +0100 Subject: [PATCH 127/235] chore: deps(dockerfile): bump image "debian" (#909) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 35566ffe..26da65b8 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20241223 as prepare-stage +FROM debian:bookworm-20250113 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From 0649e3810558c68e243a6a697e814091b19efb1f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:06:22 +0100 Subject: [PATCH 128/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#910) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index d47325ee..390bae63 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-01-08-07-57-03 +FROM gitpod/workspace-full:2025-01-13-12-15-02 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 7160a2f1dfc4261a66e287a4c0fe13245d5cd72f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:06:47 +0100 Subject: [PATCH 129/235] Bump ssh-agent version to 6.7.0 (#911) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 751d88e4..84acb898 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.6.0 + image: jenkins/ssh-agent:6.7.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 61f3c182..68299f3e 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.6.0 + image: jenkins/ssh-agent:6.7.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 5298ff32..58eeb208 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.6.0 as ssh-agent +FROM jenkins/ssh-agent:6.7.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 05fb1701..023b21f9 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.6.0 as ssh-agent +FROM jenkins/ssh-agent:6.7.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 569a3c98..9179a7f1 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.6.0 as ssh-agent +FROM jenkins/ssh-agent:6.7.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index a82f386d..ffd09cd3 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.6.0 as ssh-agent +FROM jenkins/ssh-agent:6.7.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 74556f5d..b7f62a7c 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.6.0 as ssh-agent +FROM jenkins/ssh-agent:6.7.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index f20e64ba..cd740c3e 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.6.0 as ssh-agent +FROM jenkins/ssh-agent:6.7.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From e11991a52ad930943541d77c397cabf440f80064 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 15 Jan 2025 10:03:09 +0100 Subject: [PATCH 130/235] chore(jenkins): Update Jenkins plugins (#913) --- dockerfiles/plugins.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index ffece5c7..95a6bfa5 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,7 +3,7 @@ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.79-254.vfdb_814e7791e -branch-api:2.1206.vd9f35001c95c +branch-api:2.1208.vf528356feca_4 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 @@ -20,7 +20,7 @@ font-awesome-api:6.6.0-2 git-client:6.1.0 git:5.7.0 github-api:1.321-478.vc9ce627ce001 -github-branch-source:1807.v50351eb_7dd13 +github-branch-source:1809.v088b_5f22c768 github:1.40.0 gradle:2.14 instance-identity:201.vd2a_b_5a_468a_a_6 @@ -44,8 +44,8 @@ mina-sshd-api-core:2.14.0-138.v6341ee58e1df okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:382.vb_9a_27b_7b_ea_71 -pipeline-groovy-lib:745.vdf6077913de0 +pipeline-graph-view:401.v99b_6582132f4 +pipeline-groovy-lib:749.v70084559234a_ pipeline-input-step:508.v584c0e9a_2177 pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2218.v56d0cda_37c72 @@ -70,13 +70,13 @@ token-macro:400.v35420b_922dcb_ trilead-api:2.147.vb_73cc728a_32e variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 -workflow-api:1336.vee415d95c521 +workflow-api:1358.vfb_5780da_64cb_ workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:4007.vd705fc76a_34e workflow-durable-task-step:1400.v7a_fd50a_091de -workflow-job:1476.v90f02a_225559 +workflow-job:1496.v5b_18defc07f2 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 -workflow-support:936.v9fa_77211ca_e1 +workflow-support:943.v8b_0d01a_7b_a_08 ws-cleanup:0.48 From 5df6a93649094f7bfe60f675a9ca77138daeb0b1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 15 Jan 2025 10:08:32 +0100 Subject: [PATCH 131/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#914) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 6bac43cc..1d00343e 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.492-jdk17 +ARG JENKINS_VERSION=2.493-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From fd3e192fdae32cf40cdde8f446254acba079dfa8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 16 Jan 2025 09:28:48 +0100 Subject: [PATCH 132/235] chore(jenkins): Update Jenkins plugins (#917) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 95a6bfa5..f6bdc8d6 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -2,14 +2,14 @@ ant:511.v0a_a_1a_334f41b_ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 -bouncycastle-api:2.30.1.79-254.vfdb_814e7791e +bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1208.vf528356feca_4 build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 -cloudbees-folder:6.976.v4dc79fb_c458d +cloudbees-folder:6.980.v5a_cc0cb_25881 commons-lang3-api:3.17.0-84.vb_b_938040b_078 -commons-text-api:1.12.0-129.v99a_50df237f7 +commons-text-api:1.13.0-153.v91dcd89e2a_22 configuration-as-code:1915.vcdd0a_d0d2625 credentials-binding:687.v619cb_15e923f credentials:1405.vb_cda_74a_f8974 @@ -17,7 +17,7 @@ display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 echarts-api:5.5.1-5 font-awesome-api:6.6.0-2 -git-client:6.1.0 +git-client:6.1.1 git:5.7.0 github-api:1.321-478.vc9ce627ce001 github-branch-source:1809.v088b_5f22c768 @@ -72,7 +72,7 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1358.vfb_5780da_64cb_ workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:4007.vd705fc76a_34e +workflow-cps:4009.v0089238351a_9 workflow-durable-task-step:1400.v7a_fd50a_091de workflow-job:1496.v5b_18defc07f2 workflow-multibranch:795.ve0cb_1f45ca_9a_ From e33a1ceae17dd3db2d2b0cc6518dcff0c62e2c36 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 16 Jan 2025 09:31:16 +0100 Subject: [PATCH 133/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#918) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 390bae63..5ac493e7 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-01-13-12-15-02 +FROM gitpod/workspace-full:2025-01-15-08-55-28 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 9f88067258a1d1855b1536f53c30350d765952b9 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 17 Jan 2025 15:52:30 +0100 Subject: [PATCH 134/235] chore(jenkins): Update Jenkins plugins (#921) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index f6bdc8d6..bad03681 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -37,7 +37,7 @@ junit:1312.v1a_235a_b_94a_31 locale:549.v824602fe3393 mailer:489.vd4b_25144138f matrix-auth:3.2.3 -matrix-project:840.v812f627cb_578 +matrix-project:845.vffd7fa_f27555 metrics:4.2.21-458.vcf496cb_839e4 mina-sshd-api-common:2.14.0-138.v6341ee58e1df mina-sshd-api-core:2.14.0-138.v6341ee58e1df @@ -58,7 +58,7 @@ pipeline-stage-view:2.34 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 resource-disposer:0.25 -scm-api:698.v8e3b_c788f0a_6 +scm-api:703.v72ff4b_259600 script-security:1369.v9b_98a_4e95b_2d snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:349.vb_8b_6b_9709f5b_ From f1a5941adb11fd6adaae548124c97e40da47e691 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Jan 2025 18:06:16 +0100 Subject: [PATCH 135/235] chore: deps(dockerfile): bump golang version (#922) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 023b21f9..d3a4bac1 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.23.4 +ARG GOLANG_VERSION=1.23.5 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From 6f12ac72b3868bc371b860a18c072ebe04fc17cf Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 21 Jan 2025 09:36:22 +0100 Subject: [PATCH 136/235] chore(jenkins): Update Jenkins plugins (#932) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index bad03681..bf1cb315 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -4,7 +4,7 @@ apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1208.vf528356feca_4 -build-timeout:1.33 +build-timeout:1.35 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.1 cloudbees-folder:6.980.v5a_cc0cb_25881 @@ -20,7 +20,7 @@ font-awesome-api:6.6.0-2 git-client:6.1.1 git:5.7.0 github-api:1.321-478.vc9ce627ce001 -github-branch-source:1809.v088b_5f22c768 +github-branch-source:1810.v913311241fa_9 github:1.40.0 gradle:2.14 instance-identity:201.vd2a_b_5a_468a_a_6 @@ -74,7 +74,7 @@ workflow-api:1358.vfb_5780da_64cb_ workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:4009.v0089238351a_9 workflow-durable-task-step:1400.v7a_fd50a_091de -workflow-job:1496.v5b_18defc07f2 +workflow-job:1498.v33a_0c6f3a_4b_4 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 From 21350242f7102df0a46d25630578983f014e77b3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 09:38:01 +0100 Subject: [PATCH 137/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#933) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 5ac493e7..dbe42672 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-01-15-08-55-28 +FROM gitpod/workspace-full:2025-01-20-14-43-19 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From cc4f3751150da386f34b6cdcb0cd73d6f16a6b6e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 09:38:46 +0100 Subject: [PATCH 138/235] Bump ssh-agent version to 6.8.0 (#934) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 84acb898..f5dc5b8e 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.7.0 + image: jenkins/ssh-agent:6.8.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 68299f3e..f47c3eec 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.7.0 + image: jenkins/ssh-agent:6.8.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 58eeb208..04fd4696 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.7.0 as ssh-agent +FROM jenkins/ssh-agent:6.8.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index d3a4bac1..7f53544f 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.7.0 as ssh-agent +FROM jenkins/ssh-agent:6.8.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 9179a7f1..3e5c3b09 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.7.0 as ssh-agent +FROM jenkins/ssh-agent:6.8.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index ffd09cd3..fc50a2b2 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.7.0 as ssh-agent +FROM jenkins/ssh-agent:6.8.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index b7f62a7c..99442b2b 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.7.0 as ssh-agent +FROM jenkins/ssh-agent:6.8.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index cd740c3e..0c6625a1 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.7.0 as ssh-agent +FROM jenkins/ssh-agent:6.8.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 4fbba77d8e9ee735e927bb527e2e519ab8a6044e Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 22 Jan 2025 09:37:30 +0100 Subject: [PATCH 139/235] chore(jenkins): Update Jenkins plugins (#936) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index bf1cb315..b0a66fe8 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -77,6 +77,6 @@ workflow-durable-task-step:1400.v7a_fd50a_091de workflow-job:1498.v33a_0c6f3a_4b_4 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 -workflow-step-api:678.v3ee58b_469476 -workflow-support:943.v8b_0d01a_7b_a_08 +workflow-step-api:683.va_885a_76415f9 +workflow-support:944.v5a_859593b_98a_ ws-cleanup:0.48 From ddacf8e331f363e0a8091ec26c3d7b1a100d36b3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Jan 2025 09:50:31 +0100 Subject: [PATCH 140/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#937) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 1d00343e..10ebdfd0 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.493-jdk17 +ARG JENKINS_VERSION=2.494-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From eed1c322438a37beca230e70941e7880c844007f Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 23 Jan 2025 09:44:24 +0100 Subject: [PATCH 141/235] chore(jenkins): Update Jenkins plugins (#939) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index b0a66fe8..3861cbb2 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -21,7 +21,7 @@ git-client:6.1.1 git:5.7.0 github-api:1.321-478.vc9ce627ce001 github-branch-source:1810.v913311241fa_9 -github:1.40.0 +github:1.41.0 gradle:2.14 instance-identity:201.vd2a_b_5a_468a_a_6 ionicons-api:74.v93d5eb_813d5f @@ -34,17 +34,17 @@ jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 junit:1312.v1a_235a_b_94a_31 -locale:549.v824602fe3393 +locale:560.vc5b_91b_3a_2b_68 mailer:489.vd4b_25144138f matrix-auth:3.2.3 matrix-project:845.vffd7fa_f27555 -metrics:4.2.21-458.vcf496cb_839e4 +metrics:4.2.21-461.v881e35d8fa_b_a_ mina-sshd-api-common:2.14.0-138.v6341ee58e1df mina-sshd-api-core:2.14.0-138.v6341ee58e1df okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:401.v99b_6582132f4 +pipeline-graph-view:402.va_9d108235846 pipeline-groovy-lib:749.v70084559234a_ pipeline-input-step:508.v584c0e9a_2177 pipeline-milestone-step:119.vdfdc43fc3b_9a_ From d60729afd661b08a99e3a5c29bb8c2443b426fc6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Jan 2025 10:09:52 +0100 Subject: [PATCH 142/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#941) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index dbe42672..c729d3f7 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-01-20-14-43-19 +FROM gitpod/workspace-full:2025-01-23-10-32-35 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From e80e65c1bea50e32731a732344a67c9bd3698f0e Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 26 Jan 2025 10:40:15 +0100 Subject: [PATCH 143/235] chore(jenkins): Update Jenkins plugins (#945) --- dockerfiles/plugins.txt | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 3861cbb2..93dcf510 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -39,21 +39,21 @@ mailer:489.vd4b_25144138f matrix-auth:3.2.3 matrix-project:845.vffd7fa_f27555 metrics:4.2.21-461.v881e35d8fa_b_a_ -mina-sshd-api-common:2.14.0-138.v6341ee58e1df -mina-sshd-api-core:2.14.0-138.v6341ee58e1df +mina-sshd-api-common:2.14.0-143.v2b_362fc39576 +mina-sshd-api-core:2.14.0-143.v2b_362fc39576 okhttp-api:4.11.0-183.va_87fc7a_89810 -pipeline-build-step:540.vb_e8849e1a_b_d8 +pipeline-build-step:551.v178956c49ef8 pipeline-graph-analysis:216.vfd8b_ece330ca_ pipeline-graph-view:402.va_9d108235846 pipeline-groovy-lib:749.v70084559234a_ pipeline-input-step:508.v584c0e9a_2177 pipeline-milestone-step:119.vdfdc43fc3b_9a_ -pipeline-model-api:2.2218.v56d0cda_37c72 -pipeline-model-definition:2.2218.v56d0cda_37c72 -pipeline-model-extensions:2.2218.v56d0cda_37c72 +pipeline-model-api:2.2221.vc657003fb_d93 +pipeline-model-definition:2.2221.vc657003fb_d93 +pipeline-model-extensions:2.2221.vc657003fb_d93 pipeline-rest-api:2.34 pipeline-stage-step:312.v8cd10304c27a_ -pipeline-stage-tags-metadata:2.2218.v56d0cda_37c72 +pipeline-stage-tags-metadata:2.2221.vc657003fb_d93 pipeline-stage-view:2.34 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 @@ -70,13 +70,13 @@ token-macro:400.v35420b_922dcb_ trilead-api:2.147.vb_73cc728a_32e variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 -workflow-api:1358.vfb_5780da_64cb_ -workflow-basic-steps:1058.vcb_fc1e3a_21a_9 -workflow-cps:4009.v0089238351a_9 -workflow-durable-task-step:1400.v7a_fd50a_091de +workflow-api:1363.v03f731255494 +workflow-basic-steps:1079.vce64b_a_929c5a_ +workflow-cps:4014.vcd7dc51d8b_30 +workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1498.v33a_0c6f3a_4b_4 -workflow-multibranch:795.ve0cb_1f45ca_9a_ +workflow-multibranch:800.v5f0a_a_660950e workflow-scm-step:427.v4ca_6512e7df1 -workflow-step-api:683.va_885a_76415f9 +workflow-step-api:686.v603d058a_e148 workflow-support:944.v5a_859593b_98a_ ws-cleanup:0.48 From 6ccfb22487222724e7ea8254c4b9ef48ffee08be Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 29 Jan 2025 10:02:14 +0100 Subject: [PATCH 144/235] chore(jenkins): Update Jenkins plugins (#953) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 93dcf510..5f1b257f 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ checks-api:2.2.1 cloudbees-folder:6.980.v5a_cc0cb_25881 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.13.0-153.v91dcd89e2a_22 -configuration-as-code:1915.vcdd0a_d0d2625 +configuration-as-code:1929.v036b_5a_e1f123 credentials-binding:687.v619cb_15e923f credentials:1405.vb_cda_74a_f8974 display-url-api:2.209.v582ed814ff2f @@ -36,7 +36,7 @@ jquery3-api:3.7.1-2 junit:1312.v1a_235a_b_94a_31 locale:560.vc5b_91b_3a_2b_68 mailer:489.vd4b_25144138f -matrix-auth:3.2.3 +matrix-auth:3.2.4 matrix-project:845.vffd7fa_f27555 metrics:4.2.21-461.v881e35d8fa_b_a_ mina-sshd-api-common:2.14.0-143.v2b_362fc39576 @@ -68,7 +68,7 @@ structs:338.v848422169819 timestamper:1.28 token-macro:400.v35420b_922dcb_ trilead-api:2.147.vb_73cc728a_32e -variant:60.v7290fc0eb_b_cd +variant:70.va_d9f17f859e0 workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1363.v03f731255494 workflow-basic-steps:1079.vce64b_a_929c5a_ From cc1d2b0a9f945133015eaa6422285d0d1ca8148a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 10:17:30 +0100 Subject: [PATCH 145/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#955) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 10ebdfd0..5a60a244 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.494-jdk17 +ARG JENKINS_VERSION=2.495-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 8f9a41cc99ba9d8654edebc405daf1e73f45cb9b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 29 Jan 2025 10:17:53 +0100 Subject: [PATCH 146/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#954) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index c729d3f7..309be8fd 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-01-23-10-32-35 +FROM gitpod/workspace-full:2025-01-27-10-57-00 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 08a509410e5f7453952d3f85070ef340d2bdf4f0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 09:51:11 +0100 Subject: [PATCH 147/235] chore: deps(dockerfile): bump image "debian" (#970) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 26da65b8..23490f2a 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20250113 as prepare-stage +FROM debian:bookworm-20250203 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From c6d8aab41e59c2f92f2bae103fe1a39435666a6c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 09:51:28 +0100 Subject: [PATCH 148/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#971) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 309be8fd..193f5435 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-01-27-10-57-00 +FROM gitpod/workspace-full:2025-02-05-18-29-22 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 262cbbad6b9201775bbf7e854b54cc117d433536 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 09:52:06 +0100 Subject: [PATCH 149/235] chore: deps(dockerfile): bump golang version (#972) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 7f53544f..da8b7256 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.23.5 +ARG GOLANG_VERSION=1.23.6 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From 25aacdcafd22087421526c6e0abd8e14782b5953 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 09:52:22 +0100 Subject: [PATCH 150/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#974) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 5a60a244..a52ea8b6 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.495-jdk17 +ARG JENKINS_VERSION=2.496-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 2f1013da2642b940f0fedd6a58c40cace5adb2ba Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Feb 2025 09:53:34 +0100 Subject: [PATCH 151/235] Bump ssh-agent version to 6.9.0 (#976) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index f5dc5b8e..525cf16e 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.8.0 + image: jenkins/ssh-agent:6.9.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index f47c3eec..e9351695 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.8.0 + image: jenkins/ssh-agent:6.9.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 04fd4696..fdc010e0 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.8.0 as ssh-agent +FROM jenkins/ssh-agent:6.9.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index da8b7256..02cd606a 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.8.0 as ssh-agent +FROM jenkins/ssh-agent:6.9.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 3e5c3b09..2662427e 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.8.0 as ssh-agent +FROM jenkins/ssh-agent:6.9.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index fc50a2b2..ae365cc3 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.8.0 as ssh-agent +FROM jenkins/ssh-agent:6.9.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 99442b2b..820cca02 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.8.0 as ssh-agent +FROM jenkins/ssh-agent:6.9.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 0c6625a1..271c040f 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.8.0 as ssh-agent +FROM jenkins/ssh-agent:6.9.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 876651dea91cbcddb20594c5803522c1e439f603 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 11 Feb 2025 10:14:12 +0100 Subject: [PATCH 152/235] chore(jenkins): Update Jenkins plugins (#981) --- dockerfiles/plugins.txt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 5f1b257f..d0a83601 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -1,18 +1,18 @@ ant:511.v0a_a_1a_334f41b_ antisamy-markup-formatter:162.v0e6ec0fcfcf6 -apache-httpcomponents-client-4-api:4.5.14-208.v438351942757 +apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1208.vf528356feca_4 build-timeout:1.35 caffeine-api:3.1.8-133.v17b_1ff2e0599 -checks-api:2.2.1 +checks-api:2.2.2 cloudbees-folder:6.980.v5a_cc0cb_25881 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.13.0-153.v91dcd89e2a_22 -configuration-as-code:1929.v036b_5a_e1f123 +configuration-as-code:1932.v75cb_b_f1b_698d credentials-binding:687.v619cb_15e923f -credentials:1405.vb_cda_74a_f8974 +credentials:1408.va_622a_b_f5b_1b_1 display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 echarts-api:5.5.1-5 @@ -33,7 +33,7 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-2 -junit:1312.v1a_235a_b_94a_31 +junit:1314.vd966e9a_88895 locale:560.vc5b_91b_3a_2b_68 mailer:489.vd4b_25144138f matrix-auth:3.2.4 @@ -42,19 +42,19 @@ metrics:4.2.21-461.v881e35d8fa_b_a_ mina-sshd-api-common:2.14.0-143.v2b_362fc39576 mina-sshd-api-core:2.14.0-143.v2b_362fc39576 okhttp-api:4.11.0-183.va_87fc7a_89810 -pipeline-build-step:551.v178956c49ef8 +pipeline-build-step:555.v589d5c24a_3d6 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:402.va_9d108235846 -pipeline-groovy-lib:749.v70084559234a_ +pipeline-graph-view:409.v98f212e980b_4 +pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:508.v584c0e9a_2177 pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2221.vc657003fb_d93 pipeline-model-definition:2.2221.vc657003fb_d93 pipeline-model-extensions:2.2221.vc657003fb_d93 -pipeline-rest-api:2.34 +pipeline-rest-api:2.35 pipeline-stage-step:312.v8cd10304c27a_ pipeline-stage-tags-metadata:2.2221.vc657003fb_d93 -pipeline-stage-view:2.34 +pipeline-stage-view:2.35 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 resource-disposer:0.25 @@ -62,21 +62,21 @@ scm-api:703.v72ff4b_259600 script-security:1369.v9b_98a_4e95b_2d snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:349.vb_8b_6b_9709f5b_ -ssh-slaves:3.1021.va_cc11b_de26a_e -sshd:3.330.vc866a_8389b_58 +ssh-slaves:3.1031.v72c6b_883b_869 +sshd:3.350.v1080103a_10fd structs:338.v848422169819 timestamper:1.28 -token-macro:400.v35420b_922dcb_ +token-macro:444.v52de7e9c573d trilead-api:2.147.vb_73cc728a_32e variant:70.va_d9f17f859e0 workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1363.v03f731255494 workflow-basic-steps:1079.vce64b_a_929c5a_ -workflow-cps:4014.vcd7dc51d8b_30 +workflow-cps:4018.vf02e01888da_f workflow-durable-task-step:1405.v1fcd4a_d00096 -workflow-job:1498.v33a_0c6f3a_4b_4 +workflow-job:1505.vea_4b_20a_4a_495 workflow-multibranch:800.v5f0a_a_660950e workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:686.v603d058a_e148 -workflow-support:944.v5a_859593b_98a_ +workflow-support:946.v2a_79d8a_4b_e14 ws-cleanup:0.48 From 6a4f0ad529ff06eeb1fa00b1b43ff5d8d12256ab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 11 Feb 2025 10:15:20 +0100 Subject: [PATCH 153/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#984) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 193f5435..3fe38624 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-02-05-18-29-22 +FROM gitpod/workspace-full:2025-02-10-10-54-28 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 6f66ee4d935b1f9159ddc96b238113c5d3a34c0b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 16 Feb 2025 21:59:09 +0100 Subject: [PATCH 154/235] chore(jenkins): Update Jenkins plugins (#990) --- dockerfiles/plugins.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index d0a83601..411a677e 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,11 +3,11 @@ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 bootstrap5-api:5.3.3-1 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ -branch-api:2.1208.vf528356feca_4 +branch-api:2.1214.v3f652804588d build-timeout:1.35 caffeine-api:3.1.8-133.v17b_1ff2e0599 -checks-api:2.2.2 -cloudbees-folder:6.980.v5a_cc0cb_25881 +checks-api:2.2.3 +cloudbees-folder:6.982.vf165a_16c9507 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.13.0-153.v91dcd89e2a_22 configuration-as-code:1932.v75cb_b_f1b_698d @@ -17,7 +17,7 @@ display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 echarts-api:5.5.1-5 font-awesome-api:6.6.0-2 -git-client:6.1.1 +git-client:6.1.2 git:5.7.0 github-api:1.321-478.vc9ce627ce001 github-branch-source:1810.v913311241fa_9 @@ -25,7 +25,7 @@ github:1.41.0 gradle:2.14 instance-identity:201.vd2a_b_5a_468a_a_6 ionicons-api:74.v93d5eb_813d5f -jackson2-api:2.17.0-379.v02de8ec9f64c +jackson2-api:2.17.0-386.vcb_b_037da_0d62 jakarta-activation-api:2.1.3-1 jakarta-mail-api:2.1.3-1 javax-activation-api:1.2.0-7 @@ -46,24 +46,24 @@ pipeline-build-step:555.v589d5c24a_3d6 pipeline-graph-analysis:216.vfd8b_ece330ca_ pipeline-graph-view:409.v98f212e980b_4 pipeline-groovy-lib:752.vdddedf804e72 -pipeline-input-step:508.v584c0e9a_2177 +pipeline-input-step:513.v7eb_fe7e2c0fc pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2221.vc657003fb_d93 pipeline-model-definition:2.2221.vc657003fb_d93 pipeline-model-extensions:2.2221.vc657003fb_d93 -pipeline-rest-api:2.35 +pipeline-rest-api:2.37 pipeline-stage-step:312.v8cd10304c27a_ pipeline-stage-tags-metadata:2.2221.vc657003fb_d93 -pipeline-stage-view:2.35 +pipeline-stage-view:2.37 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 resource-disposer:0.25 scm-api:703.v72ff4b_259600 -script-security:1369.v9b_98a_4e95b_2d +script-security:1373.vb_b_4a_a_c26fa_00 snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:349.vb_8b_6b_9709f5b_ ssh-slaves:3.1031.v72c6b_883b_869 -sshd:3.350.v1080103a_10fd +sshd:3.353.v2b_d33c46e970 structs:338.v848422169819 timestamper:1.28 token-macro:444.v52de7e9c573d From 5d6e67a859c5c02bf1fe1bad95099af40dc5b079 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 22:00:23 +0100 Subject: [PATCH 155/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#991) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 3fe38624..666ebe66 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-02-10-10-54-28 +FROM gitpod/workspace-full:2025-02-12-08-12-04 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 5b13be0cf5320cb42f6b94376e0476c91ca7dc3e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 22:00:58 +0100 Subject: [PATCH 156/235] chore: deps(dockerfile): bump golang version (#992) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 02cd606a..b99f302c 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.23.6 +ARG GOLANG_VERSION=1.24.0 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From 6a0993f40af534dfb22d2b752226368e28f22242 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 22:01:30 +0100 Subject: [PATCH 157/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#993) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index a52ea8b6..2598185d 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.496-jdk17 +ARG JENKINS_VERSION=2.497-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From d779fa0d6935e908ccbff1b4e9989d335686c1e4 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 18 Feb 2025 10:16:54 +0100 Subject: [PATCH 158/235] chore(jenkins): Update Jenkins plugins (#997) --- dockerfiles/plugins.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 411a677e..5b8f0431 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -1,11 +1,11 @@ ant:511.v0a_a_1a_334f41b_ antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 -bootstrap5-api:5.3.3-1 +bootstrap5-api:5.3.3-2 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1214.v3f652804588d build-timeout:1.35 -caffeine-api:3.1.8-133.v17b_1ff2e0599 +caffeine-api:3.2.0-161.v691ef352cee1 checks-api:2.2.3 cloudbees-folder:6.982.vf165a_16c9507 commons-lang3-api:3.17.0-84.vb_b_938040b_078 @@ -15,8 +15,8 @@ credentials-binding:687.v619cb_15e923f credentials:1408.va_622a_b_f5b_1b_1 display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 -echarts-api:5.5.1-5 -font-awesome-api:6.6.0-2 +echarts-api:5.5.1-6 +font-awesome-api:6.6.0-3 git-client:6.1.2 git:5.7.0 github-api:1.321-478.vc9ce627ce001 @@ -25,14 +25,14 @@ github:1.41.0 gradle:2.14 instance-identity:201.vd2a_b_5a_468a_a_6 ionicons-api:74.v93d5eb_813d5f -jackson2-api:2.17.0-386.vcb_b_037da_0d62 +jackson2-api:2.17.0-389.va_5c7e45cd806 jakarta-activation-api:2.1.3-1 jakarta-mail-api:2.1.3-1 javax-activation-api:1.2.0-7 javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d -jquery3-api:3.7.1-2 +jquery3-api:3.7.1-3 junit:1314.vd966e9a_88895 locale:560.vc5b_91b_3a_2b_68 mailer:489.vd4b_25144138f @@ -56,7 +56,7 @@ pipeline-stage-step:312.v8cd10304c27a_ pipeline-stage-tags-metadata:2.2221.vc657003fb_d93 pipeline-stage-view:2.37 plain-credentials:183.va_de8f1dd5a_2b_ -plugin-util-api:5.1.0 +plugin-util-api:6.0.0 resource-disposer:0.25 scm-api:703.v72ff4b_259600 script-security:1373.vb_b_4a_a_c26fa_00 From a43817768efb0d3db1cce5a658c0213814e10860 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Feb 2025 10:21:14 +0100 Subject: [PATCH 159/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#998) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 666ebe66..e7d6c638 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-02-12-08-12-04 +FROM gitpod/workspace-full:2025-02-17-19-56-13 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 183db5d623f9af17402581b7228a1b2eae0f3e70 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 19 Feb 2025 10:57:25 +0100 Subject: [PATCH 160/235] chore(jenkins): Update Jenkins plugins (#1000) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 5b8f0431..73d1ae02 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -4,7 +4,7 @@ apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 bootstrap5-api:5.3.3-2 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1214.v3f652804588d -build-timeout:1.35 +build-timeout:1.36 caffeine-api:3.2.0-161.v691ef352cee1 checks-api:2.2.3 cloudbees-folder:6.982.vf165a_16c9507 @@ -16,7 +16,7 @@ credentials:1408.va_622a_b_f5b_1b_1 display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 echarts-api:5.5.1-6 -font-awesome-api:6.6.0-3 +font-awesome-api:6.7.2-1 git-client:6.1.2 git:5.7.0 github-api:1.321-478.vc9ce627ce001 @@ -33,7 +33,7 @@ javax-mail-api:1.6.2-10 jaxb:2.3.9-1 jjwt-api:0.11.5-112.ve82dfb_224b_a_d jquery3-api:3.7.1-3 -junit:1314.vd966e9a_88895 +junit:1316.v13ec14a_de230 locale:560.vc5b_91b_3a_2b_68 mailer:489.vd4b_25144138f matrix-auth:3.2.4 From da0070601abc59fe55c1556bae8cbed83f0583bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 19 Feb 2025 11:01:41 +0100 Subject: [PATCH 161/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1001) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 2598185d..da5d5f3b 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.497-jdk17 +ARG JENKINS_VERSION=2.498-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 1f116867ec297c54b5130329fe1c2cf6253c09fb Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 13:53:59 +0100 Subject: [PATCH 162/235] chore(jenkins): Update Jenkins plugins (#1003) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 73d1ae02..c4a53b3f 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -43,8 +43,8 @@ mina-sshd-api-common:2.14.0-143.v2b_362fc39576 mina-sshd-api-core:2.14.0-143.v2b_362fc39576 okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:555.v589d5c24a_3d6 -pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:409.v98f212e980b_4 +pipeline-graph-analysis:231.v56354571a_da_0 +pipeline-graph-view:413.v204a_03785b_92 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:513.v7eb_fe7e2c0fc pipeline-milestone-step:119.vdfdc43fc3b_9a_ From 18ffb0de322c2fc40a141831309d218b7981e466 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 24 Feb 2025 15:41:45 +0100 Subject: [PATCH 163/235] chore(jenkins): Update Jenkins plugins (#1009) --- dockerfiles/plugins.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index c4a53b3f..be7568ba 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -1,4 +1,4 @@ -ant:511.v0a_a_1a_334f41b_ +ant:513.vde9e7b_a_0da_0f antisamy-markup-formatter:162.v0e6ec0fcfcf6 apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 bootstrap5-api:5.3.3-2 @@ -21,20 +21,20 @@ git-client:6.1.2 git:5.7.0 github-api:1.321-478.vc9ce627ce001 github-branch-source:1810.v913311241fa_9 -github:1.41.0 +github:1.42.0 gradle:2.14 instance-identity:201.vd2a_b_5a_468a_a_6 ionicons-api:74.v93d5eb_813d5f jackson2-api:2.17.0-389.va_5c7e45cd806 -jakarta-activation-api:2.1.3-1 -jakarta-mail-api:2.1.3-1 -javax-activation-api:1.2.0-7 -javax-mail-api:1.6.2-10 +jakarta-activation-api:2.1.3-2 +jakarta-mail-api:2.1.3-2 +javax-activation-api:1.2.0-8 +javax-mail-api:1.6.2-11 jaxb:2.3.9-1 -jjwt-api:0.11.5-112.ve82dfb_224b_a_d +jjwt-api:0.11.5-120.v0268cf544b_89 jquery3-api:3.7.1-3 junit:1316.v13ec14a_de230 -locale:560.vc5b_91b_3a_2b_68 +locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.4 matrix-project:845.vffd7fa_f27555 @@ -47,12 +47,12 @@ pipeline-graph-analysis:231.v56354571a_da_0 pipeline-graph-view:413.v204a_03785b_92 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:513.v7eb_fe7e2c0fc -pipeline-milestone-step:119.vdfdc43fc3b_9a_ +pipeline-milestone-step:126.vd50e283c65e7 pipeline-model-api:2.2221.vc657003fb_d93 pipeline-model-definition:2.2221.vc657003fb_d93 pipeline-model-extensions:2.2221.vc657003fb_d93 pipeline-rest-api:2.37 -pipeline-stage-step:312.v8cd10304c27a_ +pipeline-stage-step:322.vecffa_99f371c pipeline-stage-tags-metadata:2.2221.vc657003fb_d93 pipeline-stage-view:2.37 plain-credentials:183.va_de8f1dd5a_2b_ @@ -64,7 +64,7 @@ snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:349.vb_8b_6b_9709f5b_ ssh-slaves:3.1031.v72c6b_883b_869 sshd:3.353.v2b_d33c46e970 -structs:338.v848422169819 +structs:343.vdcf37b_a_c81d5 timestamper:1.28 token-macro:444.v52de7e9c573d trilead-api:2.147.vb_73cc728a_32e @@ -76,7 +76,7 @@ workflow-cps:4018.vf02e01888da_f workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1505.vea_4b_20a_4a_495 workflow-multibranch:800.v5f0a_a_660950e -workflow-scm-step:427.v4ca_6512e7df1 +workflow-scm-step:437.v05a_f66b_e5ef8 workflow-step-api:686.v603d058a_e148 workflow-support:946.v2a_79d8a_4b_e14 ws-cleanup:0.48 From be75cd15074b2f5e80c92502e9c8567d388a693c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2025 15:45:43 +0100 Subject: [PATCH 164/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1011) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index e7d6c638..bb43fb58 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-02-17-19-56-13 +FROM gitpod/workspace-full:2025-02-24-10-30-01 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From b2a594da8c9beded9d01cef75046a5478f9542e7 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 26 Feb 2025 09:26:32 +0100 Subject: [PATCH 165/235] chore(jenkins): Update Jenkins plugins (#1018) --- dockerfiles/plugins.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index be7568ba..4e842a17 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -1,7 +1,7 @@ ant:513.vde9e7b_a_0da_0f -antisamy-markup-formatter:162.v0e6ec0fcfcf6 +antisamy-markup-formatter:173.v680e3a_b_69ff3 apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 -bootstrap5-api:5.3.3-2 +bootstrap5-api:5.3.3-3 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1214.v3f652804588d build-timeout:1.36 @@ -15,7 +15,7 @@ credentials-binding:687.v619cb_15e923f credentials:1408.va_622a_b_f5b_1b_1 display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 -echarts-api:5.5.1-6 +echarts-api:5.6.0-1 font-awesome-api:6.7.2-1 git-client:6.1.2 git:5.7.0 @@ -24,7 +24,7 @@ github-branch-source:1810.v913311241fa_9 github:1.42.0 gradle:2.14 instance-identity:201.vd2a_b_5a_468a_a_6 -ionicons-api:74.v93d5eb_813d5f +ionicons-api:82.v0597178874e1 jackson2-api:2.17.0-389.va_5c7e45cd806 jakarta-activation-api:2.1.3-2 jakarta-mail-api:2.1.3-2 @@ -33,7 +33,7 @@ javax-mail-api:1.6.2-11 jaxb:2.3.9-1 jjwt-api:0.11.5-120.v0268cf544b_89 jquery3-api:3.7.1-3 -junit:1316.v13ec14a_de230 +junit:1317.v5b_35d792b_06a_ locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.4 @@ -44,10 +44,10 @@ mina-sshd-api-core:2.14.0-143.v2b_362fc39576 okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:555.v589d5c24a_3d6 pipeline-graph-analysis:231.v56354571a_da_0 -pipeline-graph-view:413.v204a_03785b_92 +pipeline-graph-view:419.v946ff4a_49e1c pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:513.v7eb_fe7e2c0fc -pipeline-milestone-step:126.vd50e283c65e7 +pipeline-milestone-step:127.vb_52887ca_3b_6d pipeline-model-api:2.2221.vc657003fb_d93 pipeline-model-definition:2.2221.vc657003fb_d93 pipeline-model-extensions:2.2221.vc657003fb_d93 @@ -67,7 +67,7 @@ sshd:3.353.v2b_d33c46e970 structs:343.vdcf37b_a_c81d5 timestamper:1.28 token-macro:444.v52de7e9c573d -trilead-api:2.147.vb_73cc728a_32e +trilead-api:2.190.v1ed19f8137f8 variant:70.va_d9f17f859e0 workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1363.v03f731255494 @@ -77,6 +77,6 @@ workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1505.vea_4b_20a_4a_495 workflow-multibranch:800.v5f0a_a_660950e workflow-scm-step:437.v05a_f66b_e5ef8 -workflow-step-api:686.v603d058a_e148 +workflow-step-api:700.v6e45cb_a_5a_a_21 workflow-support:946.v2a_79d8a_4b_e14 ws-cleanup:0.48 From 108ce481e16573b381b2fa565af1827a19bcdc2d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Feb 2025 09:29:34 +0100 Subject: [PATCH 166/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1020) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index da5d5f3b..3ca76f0f 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.498-jdk17 +ARG JENKINS_VERSION=2.499-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 3624c937d5ebf9c075f1e46bda145fa72e465d1c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Feb 2025 09:30:35 +0100 Subject: [PATCH 167/235] chore: deps(dockerfile): bump image "debian" (#1019) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 23490f2a..6446c72f 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20250203 as prepare-stage +FROM debian:bookworm-20250224 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From 5f27a87e3f5fc0a059500167dfc21bb4c50bbd0d Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 27 Feb 2025 14:56:02 +0100 Subject: [PATCH 168/235] chore(jenkins): Update Jenkins plugins (#1025) --- dockerfiles/plugins.txt | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 4e842a17..c9bed391 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -6,7 +6,7 @@ bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1214.v3f652804588d build-timeout:1.36 caffeine-api:3.2.0-161.v691ef352cee1 -checks-api:2.2.3 +checks-api:367.v18b_7f530e54a_ cloudbees-folder:6.982.vf165a_16c9507 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.13.0-153.v91dcd89e2a_22 @@ -15,14 +15,14 @@ credentials-binding:687.v619cb_15e923f credentials:1408.va_622a_b_f5b_1b_1 display-url-api:2.209.v582ed814ff2f durable-task:581.v299a_5609d767 -echarts-api:5.6.0-1 +echarts-api:5.6.0-2 font-awesome-api:6.7.2-1 git-client:6.1.2 git:5.7.0 github-api:1.321-478.vc9ce627ce001 github-branch-source:1810.v913311241fa_9 github:1.42.0 -gradle:2.14 +gradle:2.14.1 instance-identity:201.vd2a_b_5a_468a_a_6 ionicons-api:82.v0597178874e1 jackson2-api:2.17.0-389.va_5c7e45cd806 @@ -30,7 +30,7 @@ jakarta-activation-api:2.1.3-2 jakarta-mail-api:2.1.3-2 javax-activation-api:1.2.0-8 javax-mail-api:1.6.2-11 -jaxb:2.3.9-1 +jaxb:2.3.9-133.vb_ec76a_73f706 jjwt-api:0.11.5-120.v0268cf544b_89 jquery3-api:3.7.1-3 junit:1317.v5b_35d792b_06a_ @@ -38,7 +38,7 @@ locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.4 matrix-project:845.vffd7fa_f27555 -metrics:4.2.21-461.v881e35d8fa_b_a_ +metrics:4.2.21-464.vc9fa_a_0d6265d mina-sshd-api-common:2.14.0-143.v2b_362fc39576 mina-sshd-api-core:2.14.0-143.v2b_362fc39576 okhttp-api:4.11.0-183.va_87fc7a_89810 @@ -46,19 +46,19 @@ pipeline-build-step:555.v589d5c24a_3d6 pipeline-graph-analysis:231.v56354571a_da_0 pipeline-graph-view:419.v946ff4a_49e1c pipeline-groovy-lib:752.vdddedf804e72 -pipeline-input-step:513.v7eb_fe7e2c0fc +pipeline-input-step:515.v8857b_eb_b_910c pipeline-milestone-step:127.vb_52887ca_3b_6d -pipeline-model-api:2.2221.vc657003fb_d93 -pipeline-model-definition:2.2221.vc657003fb_d93 -pipeline-model-extensions:2.2221.vc657003fb_d93 +pipeline-model-api:2.2234.v4a_b_13b_8cd590 +pipeline-model-definition:2.2234.v4a_b_13b_8cd590 +pipeline-model-extensions:2.2234.v4a_b_13b_8cd590 pipeline-rest-api:2.37 pipeline-stage-step:322.vecffa_99f371c -pipeline-stage-tags-metadata:2.2221.vc657003fb_d93 +pipeline-stage-tags-metadata:2.2234.v4a_b_13b_8cd590 pipeline-stage-view:2.37 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:6.0.0 resource-disposer:0.25 -scm-api:703.v72ff4b_259600 +scm-api:704.v3ce5c542825a_ script-security:1373.vb_b_4a_a_c26fa_00 snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:349.vb_8b_6b_9709f5b_ @@ -67,7 +67,7 @@ sshd:3.353.v2b_d33c46e970 structs:343.vdcf37b_a_c81d5 timestamper:1.28 token-macro:444.v52de7e9c573d -trilead-api:2.190.v1ed19f8137f8 +trilead-api:2.192.vc50a_d147e369 variant:70.va_d9f17f859e0 workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1363.v03f731255494 @@ -75,8 +75,8 @@ workflow-basic-steps:1079.vce64b_a_929c5a_ workflow-cps:4018.vf02e01888da_f workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1505.vea_4b_20a_4a_495 -workflow-multibranch:800.v5f0a_a_660950e +workflow-multibranch:803.v08103b_87c280 workflow-scm-step:437.v05a_f66b_e5ef8 workflow-step-api:700.v6e45cb_a_5a_a_21 -workflow-support:946.v2a_79d8a_4b_e14 +workflow-support:961.v51869f7b_d409 ws-cleanup:0.48 From 7bbbbf5fb38eed7dc3c0261b5c265a3026fb4792 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 15:08:06 +0100 Subject: [PATCH 169/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1026) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index bb43fb58..2189d304 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-02-24-10-30-01 +FROM gitpod/workspace-full:2025-02-26-08-19-09 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From cc4995abd8d38c092fd31fb5344b060e39fbc428 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 3 Mar 2025 09:28:47 +0100 Subject: [PATCH 170/235] chore(jenkins): Update Jenkins plugins (#1029) --- dockerfiles/plugins.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index c9bed391..1effae8d 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -14,7 +14,7 @@ configuration-as-code:1932.v75cb_b_f1b_698d credentials-binding:687.v619cb_15e923f credentials:1408.va_622a_b_f5b_1b_1 display-url-api:2.209.v582ed814ff2f -durable-task:581.v299a_5609d767 +durable-task:587.v84b_877235b_45 echarts-api:5.6.0-2 font-awesome-api:6.7.2-1 git-client:6.1.2 @@ -42,18 +42,18 @@ metrics:4.2.21-464.vc9fa_a_0d6265d mina-sshd-api-common:2.14.0-143.v2b_362fc39576 mina-sshd-api-core:2.14.0-143.v2b_362fc39576 okhttp-api:4.11.0-183.va_87fc7a_89810 -pipeline-build-step:555.v589d5c24a_3d6 +pipeline-build-step:557.v95d96f77b_2b_8 pipeline-graph-analysis:231.v56354571a_da_0 pipeline-graph-view:419.v946ff4a_49e1c pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:515.v8857b_eb_b_910c pipeline-milestone-step:127.vb_52887ca_3b_6d -pipeline-model-api:2.2234.v4a_b_13b_8cd590 -pipeline-model-definition:2.2234.v4a_b_13b_8cd590 -pipeline-model-extensions:2.2234.v4a_b_13b_8cd590 +pipeline-model-api:2.2236.va_b_88ceec798f +pipeline-model-definition:2.2236.va_b_88ceec798f +pipeline-model-extensions:2.2236.va_b_88ceec798f pipeline-rest-api:2.37 pipeline-stage-step:322.vecffa_99f371c -pipeline-stage-tags-metadata:2.2234.v4a_b_13b_8cd590 +pipeline-stage-tags-metadata:2.2236.va_b_88ceec798f pipeline-stage-view:2.37 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:6.0.0 @@ -61,7 +61,7 @@ resource-disposer:0.25 scm-api:704.v3ce5c542825a_ script-security:1373.vb_b_4a_a_c26fa_00 snakeyaml-api:2.3-123.v13484c65210a_ -ssh-credentials:349.vb_8b_6b_9709f5b_ +ssh-credentials:355.v9b_e5b_cde5003 ssh-slaves:3.1031.v72c6b_883b_869 sshd:3.353.v2b_d33c46e970 structs:343.vdcf37b_a_c81d5 @@ -72,7 +72,7 @@ variant:70.va_d9f17f859e0 workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1363.v03f731255494 workflow-basic-steps:1079.vce64b_a_929c5a_ -workflow-cps:4018.vf02e01888da_f +workflow-cps:4032.vf3248d9c3fee workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1505.vea_4b_20a_4a_495 workflow-multibranch:803.v08103b_87c280 From e4c42285322f81bcf058db4fe7920dbc44f40cac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 10:21:36 +0100 Subject: [PATCH 171/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1031) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 2189d304..ed220aa9 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-02-26-08-19-09 +FROM gitpod/workspace-full:2025-03-03-06-37-13 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 948ec834be9e0a1bfa4ee6376ee1ad046c6550bc Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 5 Mar 2025 07:51:36 +0100 Subject: [PATCH 172/235] chore(jenkins): Update Jenkins plugins (#1037) --- dockerfiles/plugins.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1effae8d..0ac49f1c 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -44,16 +44,16 @@ mina-sshd-api-core:2.14.0-143.v2b_362fc39576 okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:557.v95d96f77b_2b_8 pipeline-graph-analysis:231.v56354571a_da_0 -pipeline-graph-view:419.v946ff4a_49e1c +pipeline-graph-view:423.v765c49ca_da_3f pipeline-groovy-lib:752.vdddedf804e72 -pipeline-input-step:515.v8857b_eb_b_910c +pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:127.vb_52887ca_3b_6d -pipeline-model-api:2.2236.va_b_88ceec798f -pipeline-model-definition:2.2236.va_b_88ceec798f -pipeline-model-extensions:2.2236.va_b_88ceec798f +pipeline-model-api:2.2247.va_423189a_7dff +pipeline-model-definition:2.2247.va_423189a_7dff +pipeline-model-extensions:2.2247.va_423189a_7dff pipeline-rest-api:2.37 pipeline-stage-step:322.vecffa_99f371c -pipeline-stage-tags-metadata:2.2236.va_b_88ceec798f +pipeline-stage-tags-metadata:2.2247.va_423189a_7dff pipeline-stage-view:2.37 plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:6.0.0 @@ -72,7 +72,7 @@ variant:70.va_d9f17f859e0 workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1363.v03f731255494 workflow-basic-steps:1079.vce64b_a_929c5a_ -workflow-cps:4032.vf3248d9c3fee +workflow-cps:4043.va_fb_de6a_a_8b_f5 workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1505.vea_4b_20a_4a_495 workflow-multibranch:803.v08103b_87c280 From a4bac5781f4a1b19b63b247e2c48f84dc9e3fdcc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Mar 2025 07:53:43 +0100 Subject: [PATCH 173/235] chore: deps(dockerfile): bump golang version (#1038) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index b99f302c..ff741214 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.24.0 +ARG GOLANG_VERSION=1.24.1 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From bcda8f7bb3b0d8f6b545fdc8db858a7f940afa7f Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 8 Mar 2025 23:14:13 +0100 Subject: [PATCH 174/235] chore(jenkins): Update Jenkins plugins (#1045) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 0ac49f1c..75194b97 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,7 +7,7 @@ branch-api:2.1214.v3f652804588d build-timeout:1.36 caffeine-api:3.2.0-161.v691ef352cee1 checks-api:367.v18b_7f530e54a_ -cloudbees-folder:6.982.vf165a_16c9507 +cloudbees-folder:6.985.va_f1635030cc5 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.13.0-153.v91dcd89e2a_22 configuration-as-code:1932.v75cb_b_f1b_698d @@ -23,9 +23,9 @@ github-api:1.321-478.vc9ce627ce001 github-branch-source:1810.v913311241fa_9 github:1.42.0 gradle:2.14.1 -instance-identity:201.vd2a_b_5a_468a_a_6 +instance-identity:203.v15e81a_1b_7a_38 ionicons-api:82.v0597178874e1 -jackson2-api:2.17.0-389.va_5c7e45cd806 +jackson2-api:2.18.3-399.v74c9ce452ea_8 jakarta-activation-api:2.1.3-2 jakarta-mail-api:2.1.3-2 javax-activation-api:1.2.0-8 From 17feb150ae898cffb5dbe4db0c9df7e6fe1bd5f2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Mar 2025 23:15:07 +0100 Subject: [PATCH 175/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1046) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index ed220aa9..1c5854b0 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-03-03-06-37-13 +FROM gitpod/workspace-full:2025-03-05-10-58-45 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 9119c3c67e4bcc98ba9abf6218b6611701958e74 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Mar 2025 23:15:26 +0100 Subject: [PATCH 176/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1047) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 3ca76f0f..424e35da 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.499-jdk17 +ARG JENKINS_VERSION=2.500-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 648c0181eb59a8d2716e79a84d87218ac02a2a76 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 8 Mar 2025 23:15:46 +0100 Subject: [PATCH 177/235] Bump ssh-agent version to 6.10.0 (#1048) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 525cf16e..225507e6 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.9.0 + image: jenkins/ssh-agent:6.10.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index e9351695..6135b46c 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.9.0 + image: jenkins/ssh-agent:6.10.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index fdc010e0..f56b78dd 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.9.0 as ssh-agent +FROM jenkins/ssh-agent:6.10.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index ff741214..9ec183de 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.9.0 as ssh-agent +FROM jenkins/ssh-agent:6.10.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 2662427e..78d3ee0a 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.9.0 as ssh-agent +FROM jenkins/ssh-agent:6.10.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index ae365cc3..c506f3c6 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.9.0 as ssh-agent +FROM jenkins/ssh-agent:6.10.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 820cca02..cb0aea8d 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.9.0 as ssh-agent +FROM jenkins/ssh-agent:6.10.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 271c040f..ddfd88b8 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.9.0 as ssh-agent +FROM jenkins/ssh-agent:6.10.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 5fa3548992a95e0ab235fd80eb53b8fa6c90eb2f Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 12 Mar 2025 09:40:34 +0100 Subject: [PATCH 178/235] chore(jenkins): Update Jenkins plugins (#1052) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 75194b97..6c3ba35e 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -25,7 +25,7 @@ github:1.42.0 gradle:2.14.1 instance-identity:203.v15e81a_1b_7a_38 ionicons-api:82.v0597178874e1 -jackson2-api:2.18.3-399.v74c9ce452ea_8 +jackson2-api:2.18.3-402.v74c4eb_f122b_2 jakarta-activation-api:2.1.3-2 jakarta-mail-api:2.1.3-2 javax-activation-api:1.2.0-8 From 225f00b36dd0510fcfea89cd311f897b49e5e72c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 12 Mar 2025 09:42:49 +0100 Subject: [PATCH 179/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1054) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 424e35da..86d15d44 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.500-jdk17 +ARG JENKINS_VERSION=2.501-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 10448684052bb8a7a04e9e6050d371db2d867962 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 12 Mar 2025 09:43:13 +0100 Subject: [PATCH 180/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1053) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 1c5854b0..2b5f033d 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-03-05-10-58-45 +FROM gitpod/workspace-full:2025-03-10-14-51-12 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 4eb18db8ac653f40102ac0052a9452d9b769869b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 13 Mar 2025 18:29:00 +0100 Subject: [PATCH 181/235] chore(jenkins): Update Jenkins plugins (#1059) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 6c3ba35e..c9b1cdb7 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -78,5 +78,5 @@ workflow-job:1505.vea_4b_20a_4a_495 workflow-multibranch:803.v08103b_87c280 workflow-scm-step:437.v05a_f66b_e5ef8 workflow-step-api:700.v6e45cb_a_5a_a_21 -workflow-support:961.v51869f7b_d409 +workflow-support:963.va_600813d04a_a_ ws-cleanup:0.48 From be60e0faa8d0b5fc8406d06ea75dd6fd3aa9b207 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 13 Mar 2025 18:30:38 +0100 Subject: [PATCH 182/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1062) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 2b5f033d..759a8b6f 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-03-10-14-51-12 +FROM gitpod/workspace-full:2025-03-12-22-01-49 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From d041cbcfc62807523311f383d8de4c660bcddac1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 16 Mar 2025 15:54:24 +0100 Subject: [PATCH 183/235] chore(jenkins): Update Jenkins plugins (#1065) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index c9b1cdb7..b8ff9c31 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -36,7 +36,7 @@ jquery3-api:3.7.1-3 junit:1317.v5b_35d792b_06a_ locale:566.v3323643741cc mailer:489.vd4b_25144138f -matrix-auth:3.2.4 +matrix-auth:3.2.5 matrix-project:845.vffd7fa_f27555 metrics:4.2.21-464.vc9fa_a_0d6265d mina-sshd-api-common:2.14.0-143.v2b_362fc39576 From c9612f215df782ce87804eba8b3f7b508ee3d83a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Mar 2025 16:09:19 +0100 Subject: [PATCH 184/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1066) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 759a8b6f..c749599c 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-03-12-22-01-49 +FROM gitpod/workspace-full:2025-03-14-16-18-56 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 382ebe9183d083983382cf952c0f209ee498da4b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 18 Mar 2025 10:21:07 +0100 Subject: [PATCH 185/235] chore(jenkins): Update Jenkins plugins (#1070) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index b8ff9c31..bcc29c0b 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -70,9 +70,9 @@ token-macro:444.v52de7e9c573d trilead-api:2.192.vc50a_d147e369 variant:70.va_d9f17f859e0 workflow-aggregator:600.vb_57cdd26fdd7 -workflow-api:1363.v03f731255494 +workflow-api:1366.vf1fb_e1a_f6b_22 workflow-basic-steps:1079.vce64b_a_929c5a_ -workflow-cps:4043.va_fb_de6a_a_8b_f5 +workflow-cps:4045.v0efb_cb_7cea_e9 workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1505.vea_4b_20a_4a_495 workflow-multibranch:803.v08103b_87c280 From e93c216b257652576435e64f52e1e7efaf471b2a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Mar 2025 10:26:29 +0100 Subject: [PATCH 186/235] chore: deps(dockerfile): bump image "debian" (#1071) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 6446c72f..0b2f63ec 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20250224 as prepare-stage +FROM debian:bookworm-20250317 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From 4163357a63f964a2bbc74765f23ed963045afa04 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Mar 2025 10:27:09 +0100 Subject: [PATCH 187/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1072) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index c749599c..732aff31 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-03-14-16-18-56 +FROM gitpod/workspace-full:2025-03-17-15-29-30 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 760f6e7c68531c3900ef2f027c15cc8babc19702 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 24 Mar 2025 22:11:07 +0100 Subject: [PATCH 188/235] chore(jenkins): Update Jenkins plugins (#1080) --- dockerfiles/plugins.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index bcc29c0b..6b5b3d85 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -4,15 +4,15 @@ apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 bootstrap5-api:5.3.3-3 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1214.v3f652804588d -build-timeout:1.36 +build-timeout:1.37 caffeine-api:3.2.0-161.v691ef352cee1 checks-api:367.v18b_7f530e54a_ -cloudbees-folder:6.985.va_f1635030cc5 +cloudbees-folder:6.991.v1d5f531726d0 commons-lang3-api:3.17.0-84.vb_b_938040b_078 commons-text-api:1.13.0-153.v91dcd89e2a_22 -configuration-as-code:1932.v75cb_b_f1b_698d +configuration-as-code:1947.v7d33fe23569c credentials-binding:687.v619cb_15e923f -credentials:1408.va_622a_b_f5b_1b_1 +credentials:1413.va_51c53703df1 display-url-api:2.209.v582ed814ff2f durable-task:587.v84b_877235b_45 echarts-api:5.6.0-2 @@ -33,11 +33,11 @@ javax-mail-api:1.6.2-11 jaxb:2.3.9-133.vb_ec76a_73f706 jjwt-api:0.11.5-120.v0268cf544b_89 jquery3-api:3.7.1-3 -junit:1317.v5b_35d792b_06a_ +junit:1319.v000471ca_e5e2 locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.5 -matrix-project:845.vffd7fa_f27555 +matrix-project:847.v88a_f90ff9f20 metrics:4.2.21-464.vc9fa_a_0d6265d mina-sshd-api-common:2.14.0-143.v2b_362fc39576 mina-sshd-api-core:2.14.0-143.v2b_362fc39576 @@ -56,7 +56,7 @@ pipeline-stage-step:322.vecffa_99f371c pipeline-stage-tags-metadata:2.2247.va_423189a_7dff pipeline-stage-view:2.37 plain-credentials:183.va_de8f1dd5a_2b_ -plugin-util-api:6.0.0 +plugin-util-api:6.1.0 resource-disposer:0.25 scm-api:704.v3ce5c542825a_ script-security:1373.vb_b_4a_a_c26fa_00 @@ -69,12 +69,12 @@ timestamper:1.28 token-macro:444.v52de7e9c573d trilead-api:2.192.vc50a_d147e369 variant:70.va_d9f17f859e0 -workflow-aggregator:600.vb_57cdd26fdd7 +workflow-aggregator:608.v67378e9d3db_1 workflow-api:1366.vf1fb_e1a_f6b_22 workflow-basic-steps:1079.vce64b_a_929c5a_ -workflow-cps:4045.v0efb_cb_7cea_e9 +workflow-cps:4046.v90b_1b_9edec67 workflow-durable-task-step:1405.v1fcd4a_d00096 -workflow-job:1505.vea_4b_20a_4a_495 +workflow-job:1506.v77f78a_b_8cc5e workflow-multibranch:803.v08103b_87c280 workflow-scm-step:437.v05a_f66b_e5ef8 workflow-step-api:700.v6e45cb_a_5a_a_21 From a868dbbd8c6dfe03f2dd3c32b278507bd66fff1d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 22:14:49 +0100 Subject: [PATCH 189/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1082) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 86d15d44..95bc6e37 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.501-jdk17 +ARG JENKINS_VERSION=2.502-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From db3a95f56259c8abcbc8ee8b025c877d0d8407a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 22:15:15 +0100 Subject: [PATCH 190/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1081) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 732aff31..e6989b21 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-03-17-15-29-30 +FROM gitpod/workspace-full:2025-03-18-13-03-22 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 23ccbecb3737e7448e69e8dcc36660af3ee06e14 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 26 Mar 2025 12:08:10 +0100 Subject: [PATCH 191/235] chore(jenkins): Update Jenkins plugins (#1085) --- dockerfiles/plugins.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 6b5b3d85..7fea296b 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -5,10 +5,10 @@ bootstrap5-api:5.3.3-3 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1214.v3f652804588d build-timeout:1.37 -caffeine-api:3.2.0-161.v691ef352cee1 +caffeine-api:3.2.0-166.v72a_6d74b_870f checks-api:367.v18b_7f530e54a_ cloudbees-folder:6.991.v1d5f531726d0 -commons-lang3-api:3.17.0-84.vb_b_938040b_078 +commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 configuration-as-code:1947.v7d33fe23569c credentials-binding:687.v619cb_15e923f @@ -19,7 +19,7 @@ echarts-api:5.6.0-2 font-awesome-api:6.7.2-1 git-client:6.1.2 git:5.7.0 -github-api:1.321-478.vc9ce627ce001 +github-api:1.321-486.vd7fa_ef919b_48 github-branch-source:1810.v913311241fa_9 github:1.42.0 gradle:2.14.1 @@ -43,7 +43,7 @@ mina-sshd-api-common:2.14.0-143.v2b_362fc39576 mina-sshd-api-core:2.14.0-143.v2b_362fc39576 okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:557.v95d96f77b_2b_8 -pipeline-graph-analysis:231.v56354571a_da_0 +pipeline-graph-analysis:235.vb_a_a_36b_f248c2 pipeline-graph-view:423.v765c49ca_da_3f pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c @@ -55,12 +55,12 @@ pipeline-rest-api:2.37 pipeline-stage-step:322.vecffa_99f371c pipeline-stage-tags-metadata:2.2247.va_423189a_7dff pipeline-stage-view:2.37 -plain-credentials:183.va_de8f1dd5a_2b_ +plain-credentials:195.vb_906e9073dee plugin-util-api:6.1.0 resource-disposer:0.25 scm-api:704.v3ce5c542825a_ script-security:1373.vb_b_4a_a_c26fa_00 -snakeyaml-api:2.3-123.v13484c65210a_ +snakeyaml-api:2.3-125.v4d77857a_b_402 ssh-credentials:355.v9b_e5b_cde5003 ssh-slaves:3.1031.v72c6b_883b_869 sshd:3.353.v2b_d33c46e970 @@ -72,7 +72,7 @@ variant:70.va_d9f17f859e0 workflow-aggregator:608.v67378e9d3db_1 workflow-api:1366.vf1fb_e1a_f6b_22 workflow-basic-steps:1079.vce64b_a_929c5a_ -workflow-cps:4046.v90b_1b_9edec67 +workflow-cps:4050.v8b_a_69b_587c39 workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1506.v77f78a_b_8cc5e workflow-multibranch:803.v08103b_87c280 From ce084e9e546b2b3d7f0698f89546906866dface7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Mar 2025 12:10:08 +0100 Subject: [PATCH 192/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1086) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 95bc6e37..a7b88564 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.502-jdk17 +ARG JENKINS_VERSION=2.503-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 87ec8ac80858ce428dddd4d75f5d66c06243f78e Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 29 Mar 2025 10:17:28 +0100 Subject: [PATCH 193/235] chore(jenkins): Update Jenkins plugins (#1092) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 7fea296b..778ad862 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,7 +7,7 @@ branch-api:2.1214.v3f652804588d build-timeout:1.37 caffeine-api:3.2.0-166.v72a_6d74b_870f checks-api:367.v18b_7f530e54a_ -cloudbees-folder:6.991.v1d5f531726d0 +cloudbees-folder:6.999.v42253c105443 commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 configuration-as-code:1947.v7d33fe23569c @@ -19,9 +19,9 @@ echarts-api:5.6.0-2 font-awesome-api:6.7.2-1 git-client:6.1.2 git:5.7.0 -github-api:1.321-486.vd7fa_ef919b_48 -github-branch-source:1810.v913311241fa_9 -github:1.42.0 +github-api:1.321-488.v9b_c0da_9533f8 +github-branch-source:1815.v9152b_2ff7a_1b_ +github:1.43.0 gradle:2.14.1 instance-identity:203.v15e81a_1b_7a_38 ionicons-api:82.v0597178874e1 @@ -41,7 +41,7 @@ matrix-project:847.v88a_f90ff9f20 metrics:4.2.21-464.vc9fa_a_0d6265d mina-sshd-api-common:2.14.0-143.v2b_362fc39576 mina-sshd-api-core:2.14.0-143.v2b_362fc39576 -okhttp-api:4.11.0-183.va_87fc7a_89810 +okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:557.v95d96f77b_2b_8 pipeline-graph-analysis:235.vb_a_a_36b_f248c2 pipeline-graph-view:423.v765c49ca_da_3f @@ -74,7 +74,7 @@ workflow-api:1366.vf1fb_e1a_f6b_22 workflow-basic-steps:1079.vce64b_a_929c5a_ workflow-cps:4050.v8b_a_69b_587c39 workflow-durable-task-step:1405.v1fcd4a_d00096 -workflow-job:1506.v77f78a_b_8cc5e +workflow-job:1508.v9cb_c3a_a_89dfd workflow-multibranch:803.v08103b_87c280 workflow-scm-step:437.v05a_f66b_e5ef8 workflow-step-api:700.v6e45cb_a_5a_a_21 From 02149d1836f4ea36a163d6aff3597cc695f272b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Mar 2025 10:34:39 +0100 Subject: [PATCH 194/235] Bump ssh-agent version to 6.11.1 (#1095) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 225507e6..077bf91a 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.10.0 + image: jenkins/ssh-agent:6.11.1 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 6135b46c..207c6a6d 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.10.0 + image: jenkins/ssh-agent:6.11.1 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index f56b78dd..5565c258 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.10.0 as ssh-agent +FROM jenkins/ssh-agent:6.11.1 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 9ec183de..541b73fc 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.10.0 as ssh-agent +FROM jenkins/ssh-agent:6.11.1 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 78d3ee0a..f36c7189 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.10.0 as ssh-agent +FROM jenkins/ssh-agent:6.11.1 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index c506f3c6..681b6337 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.10.0 as ssh-agent +FROM jenkins/ssh-agent:6.11.1 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index cb0aea8d..406675b9 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.10.0 as ssh-agent +FROM jenkins/ssh-agent:6.11.1 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index ddfd88b8..240a9bc7 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.10.0 as ssh-agent +FROM jenkins/ssh-agent:6.11.1 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From e6574eee5d52160371fcedc91a8b880f32811d84 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 29 Mar 2025 10:34:51 +0100 Subject: [PATCH 195/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1094) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index e6989b21..29eb7de6 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-03-18-13-03-22 +FROM gitpod/workspace-full:2025-03-26-12-37-07 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From a8cd73b317f5f2e384a1bd62aa7fe3a1dab373b1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 2 Apr 2025 10:45:11 +0200 Subject: [PATCH 196/235] chore(jenkins): Update Jenkins plugins (#1102) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 778ad862..35aeaa79 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -36,7 +36,7 @@ jquery3-api:3.7.1-3 junit:1319.v000471ca_e5e2 locale:566.v3323643741cc mailer:489.vd4b_25144138f -matrix-auth:3.2.5 +matrix-auth:3.2.6 matrix-project:847.v88a_f90ff9f20 metrics:4.2.21-464.vc9fa_a_0d6265d mina-sshd-api-common:2.14.0-143.v2b_362fc39576 @@ -72,7 +72,7 @@ variant:70.va_d9f17f859e0 workflow-aggregator:608.v67378e9d3db_1 workflow-api:1366.vf1fb_e1a_f6b_22 workflow-basic-steps:1079.vce64b_a_929c5a_ -workflow-cps:4050.v8b_a_69b_587c39 +workflow-cps:4080.va_15b_44a_91525 workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1508.v9cb_c3a_a_89dfd workflow-multibranch:803.v08103b_87c280 From 3413459fa539dcae6a569512b20a338a37019f68 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 2 Apr 2025 10:48:40 +0200 Subject: [PATCH 197/235] chore: deps(dockerfile): bump golang version (#1103) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 541b73fc..7877ed95 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.24.1 +ARG GOLANG_VERSION=1.24.2 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From 77de5c8244071558bdcd8260641f03361d8a4ab2 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 4 Apr 2025 12:12:08 +0200 Subject: [PATCH 198/235] chore(jenkins): Update Jenkins plugins (#1108) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 35aeaa79..8fd1bb61 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ checks-api:367.v18b_7f530e54a_ cloudbees-folder:6.999.v42253c105443 commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 -configuration-as-code:1947.v7d33fe23569c +configuration-as-code:1950.v506f96a_69516 credentials-binding:687.v619cb_15e923f credentials:1413.va_51c53703df1 display-url-api:2.209.v582ed814ff2f @@ -39,8 +39,8 @@ mailer:489.vd4b_25144138f matrix-auth:3.2.6 matrix-project:847.v88a_f90ff9f20 metrics:4.2.21-464.vc9fa_a_0d6265d -mina-sshd-api-common:2.14.0-143.v2b_362fc39576 -mina-sshd-api-core:2.14.0-143.v2b_362fc39576 +mina-sshd-api-common:2.15.0-161.vb_200831a_c15b_ +mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:557.v95d96f77b_2b_8 pipeline-graph-analysis:235.vb_a_a_36b_f248c2 From 728c2658a01cde59c914e0261110645cf13f163d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 4 Apr 2025 12:14:31 +0200 Subject: [PATCH 199/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1109) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 29eb7de6..025d2bf7 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-03-26-12-37-07 +FROM gitpod/workspace-full:2025-04-02-11-00-56 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 46a203e61d2561dde74c91417f6a4d802232eb02 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 4 Apr 2025 12:15:02 +0200 Subject: [PATCH 200/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1110) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index a7b88564..82cce2a9 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.503-jdk17 +ARG JENKINS_VERSION=2.504-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From e374f3026bef0794ff0253335d5dbcc65e5e7afc Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 11 Apr 2025 18:23:15 +0200 Subject: [PATCH 201/235] chore(jenkins): Update Jenkins plugins (#1119) --- dockerfiles/plugins.txt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 8fd1bb61..e1c38eaf 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,21 +3,21 @@ antisamy-markup-formatter:173.v680e3a_b_69ff3 apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 bootstrap5-api:5.3.3-3 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ -branch-api:2.1214.v3f652804588d -build-timeout:1.37 +branch-api:2.1217.v43d8b_b_d8b_2c7 +build-timeout:1.38 caffeine-api:3.2.0-166.v72a_6d74b_870f checks-api:367.v18b_7f530e54a_ -cloudbees-folder:6.999.v42253c105443 +cloudbees-folder:6.1008.v5ed27a_3a_e475 commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 -configuration-as-code:1950.v506f96a_69516 +configuration-as-code:1953.v148f87d74b_1e credentials-binding:687.v619cb_15e923f credentials:1413.va_51c53703df1 display-url-api:2.209.v582ed814ff2f durable-task:587.v84b_877235b_45 echarts-api:5.6.0-2 font-awesome-api:6.7.2-1 -git-client:6.1.2 +git-client:6.1.3 git:5.7.0 github-api:1.321-488.v9b_c0da_9533f8 github-branch-source:1815.v9152b_2ff7a_1b_ @@ -33,7 +33,7 @@ javax-mail-api:1.6.2-11 jaxb:2.3.9-133.vb_ec76a_73f706 jjwt-api:0.11.5-120.v0268cf544b_89 jquery3-api:3.7.1-3 -junit:1319.v000471ca_e5e2 +junit:1322.v1556dc1c59a_f locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.6 @@ -42,18 +42,18 @@ metrics:4.2.21-464.vc9fa_a_0d6265d mina-sshd-api-common:2.15.0-161.vb_200831a_c15b_ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 -pipeline-build-step:557.v95d96f77b_2b_8 +pipeline-build-step:567.vea_ce550ece97 pipeline-graph-analysis:235.vb_a_a_36b_f248c2 -pipeline-graph-view:423.v765c49ca_da_3f +pipeline-graph-view:430.v4cf821b_20632 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:127.vb_52887ca_3b_6d -pipeline-model-api:2.2247.va_423189a_7dff -pipeline-model-definition:2.2247.va_423189a_7dff -pipeline-model-extensions:2.2247.va_423189a_7dff +pipeline-model-api:2.2254.v2a_978de46f35 +pipeline-model-definition:2.2254.v2a_978de46f35 +pipeline-model-extensions:2.2254.v2a_978de46f35 pipeline-rest-api:2.37 pipeline-stage-step:322.vecffa_99f371c -pipeline-stage-tags-metadata:2.2247.va_423189a_7dff +pipeline-stage-tags-metadata:2.2254.v2a_978de46f35 pipeline-stage-view:2.37 plain-credentials:195.vb_906e9073dee plugin-util-api:6.1.0 @@ -67,16 +67,16 @@ sshd:3.353.v2b_d33c46e970 structs:343.vdcf37b_a_c81d5 timestamper:1.28 token-macro:444.v52de7e9c573d -trilead-api:2.192.vc50a_d147e369 +trilead-api:2.209.v0e69b_c43c245 variant:70.va_d9f17f859e0 workflow-aggregator:608.v67378e9d3db_1 -workflow-api:1366.vf1fb_e1a_f6b_22 +workflow-api:1371.ve334280b_d611 workflow-basic-steps:1079.vce64b_a_929c5a_ workflow-cps:4080.va_15b_44a_91525 workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1508.v9cb_c3a_a_89dfd -workflow-multibranch:803.v08103b_87c280 +workflow-multibranch:806.vb_b_688f609ee9 workflow-scm-step:437.v05a_f66b_e5ef8 workflow-step-api:700.v6e45cb_a_5a_a_21 -workflow-support:963.va_600813d04a_a_ +workflow-support:968.v8f17397e87b_8 ws-cleanup:0.48 From 00ebc9cbf222bb0aa28b27bbc241fe30d2b632cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Apr 2025 18:25:42 +0200 Subject: [PATCH 202/235] chore: deps(dockerfile): bump image "debian" (#1121) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 0b2f63ec..5d8c0ff4 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20250317 as prepare-stage +FROM debian:bookworm-20250407 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From f5dbcbb56e0ee6b21772d5613f6c01c6a6ec728e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Apr 2025 18:26:34 +0200 Subject: [PATCH 203/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1122) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 025d2bf7..2aeec071 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-04-02-11-00-56 +FROM gitpod/workspace-full:2025-04-07-09-59-40 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 8449aa933fad99d00f9767b1e28c45e95f87dd2c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Apr 2025 18:28:44 +0200 Subject: [PATCH 204/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1123) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 82cce2a9..80e42b59 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.504-jdk17 +ARG JENKINS_VERSION=2.505-jdk17 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 8ea4cc85d77d906d5416d36d8fe7d8de63dbfaa2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Apr 2025 18:29:28 +0200 Subject: [PATCH 205/235] Bump ssh-agent version to 6.12.0 (#1124) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 077bf91a..8964cc70 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -62,7 +62,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.11.1 + image: jenkins/ssh-agent:6.12.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 207c6a6d..73dc77bc 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -109,7 +109,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.11.1 + image: jenkins/ssh-agent:6.12.0 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 5565c258..4c73b730 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.11.1 as ssh-agent +FROM jenkins/ssh-agent:6.12.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 7877ed95..4accc196 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.11.1 as ssh-agent +FROM jenkins/ssh-agent:6.12.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index f36c7189..4850c684 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.11.1 as ssh-agent +FROM jenkins/ssh-agent:6.12.0 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 681b6337..2e1669ce 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.11.1 as ssh-agent +FROM jenkins/ssh-agent:6.12.0 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 406675b9..34eec4ae 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.11.1 as ssh-agent +FROM jenkins/ssh-agent:6.12.0 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 240a9bc7..91405fae 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.11.1 as ssh-agent +FROM jenkins/ssh-agent:6.12.0 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From b957059d81197629b7f4683d6e1fa682d9f7402d Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 16 Apr 2025 11:13:05 +0200 Subject: [PATCH 206/235] update weekly (#1140) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#685) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#687) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#688) * chore(jenkins): Update Jenkins plugins (#692) * chore(jenkins): Update Jenkins plugins (#694) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#695) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#699) * chore(deps): bump anchore/scan-action from 4.1.2 to 5.0.0 (#700) Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 4.1.2 to 5.0.0. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/64a33b277ea7a1215a3c142735a1091341939ff5...4e08a16a68fb1b35d2fca00f0607db0b5b5120a7) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#701) * chore(jenkins): Update Jenkins plugins (#703) * chore(jenkins): Update Jenkins plugins (#706) * chore: deps(dockerfile): bump image "debian" (#707) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#710) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#712) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(deps): bump anchore/scan-action from 5.0.0 to 5.1.0 (#714) Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/4e08a16a68fb1b35d2fca00f0607db0b5b5120a7...ef0b0b023552a0c077534074723a9915280284bb) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#715) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#716) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#717) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * Bump ssh-agent version to 6.1.0 (#718) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#724) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#725) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#729) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#731) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#733) * chore(jenkins): Update Jenkins plugins (#735) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#736) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#737) ... ockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: [node-agent] Bump node version in dockerfiles/maven/Dockerfile (#738) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#743) * chore(jenkins): Update Jenkins plugins (#745) * chore(jenkins): Update Jenkins plugins (#749) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#748) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(deps): bump anchore/scan-action from 5.1.0 to 5.2.0 (#751) Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 5.1.0 to 5.2.0. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/ef0b0b023552a0c077534074723a9915280284bb...5ed195cc06065322983cae4bb31e2a751feb86fd) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump updatecli/updatecli-action from 2.68.0 to 2.69.0 (#750) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.68.0 to 2.69.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.68.0...v2.69.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(jenkins): Update Jenkins plugins (#752) * chore(jenkins): Update Jenkins plugins (#754) * chore(jenkins): Update Jenkins plugins (#757) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#758) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump golang version (#759) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(jenkins): Update Jenkins plugins (#769) * chore(deps): bump updatecli/updatecli-action from 2.69.0 to 2.70.0 (#767) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.69.0 to 2.70.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.69.0...v2.70.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(deps): bump anchore/scan-action from 5.2.0 to 5.2.1 (#768) Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 5.2.0 to 5.2.1. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/5ed195cc06065322983cae4bb31e2a751feb86fd...f2ba85e044c8f5e5014c9a539328a9c78d3bfa49) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore: deps(dockerfile): bump image "debian" (#770) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#771) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#775) * chore(jenkins): Update Jenkins plugins (#778) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#779) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * Bump ssh-agent version to 6.2.0 (#782) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#784) * chore(jenkins): Update Jenkins plugins (#787) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#788) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#791) * fix(docker): Multi does not launch a second Jenkins controller anymore. (#792) * fix(docker): Multi does not launch a second Jenkins controller anymore. * fix(docker): The single quotes prevent $JENKINS_CONTROLLER from being expanded. * fix(docker): Improve the fallback mechanism implementation. * fix(docker): Adding error handling for when both controllers are unreachable. And making the timeout duration configurable. * fix(ga): Follows the official documentation for the action https://github.com/docker/login-action?tab=readme-ov-file#github-container-registry * Update github-docker-registry-push.yml (#793) * Update Dockerfile (#794) * fix(dependencies): debian version in agent-discovery was not tracked. (#795) * Fix multi (#797) * fix(docker): Multi does not launch a second Jenkins controller anymore. * fix(docker): The single quotes prevent $JENKINS_CONTROLLER from being expanded. * fix(docker): Improve the fallback mechanism implementation. * fix(docker): Adding error handling for when both controllers are unreachable. And making the timeout duration configurable. * fix(ga): Follows the official documentation for the action https://github.com/docker/login-action?tab=readme-ov-file#github-container-registry * fix(docker): Wait for 60s before switching to another server. * fix(ga): Remove trailing spaces. * chore(deps): bump anchore/scan-action from 5.2.1 to 5.3.0 (#796) Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 5.2.1 to 5.3.0. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/f2ba85e044c8f5e5014c9a539328a9c78d3bfa49...869c549e657a088dc0441b08ce4fc0ecdac2bb65) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(docker): Move to debian:bookworm-20241016-slim * Update github-docker-registry-push.yml * fix(ga): Add GitHub Actions workflow to manually trigger Dependabot. (#798) - Created a new workflow file `.github/workflows/run-dependabot.yml` to allow manual triggering of Dependabot using the `workflow_dispatch` event. - Configured the workflow to run Dependabot for GitHub Actions updates. * Run dependabot (#799) * fix(ga): Add GitHub Actions workflow to manually trigger Dependabot. - Created a new workflow file `.github/workflows/run-dependabot.yml` to allow manual triggering of Dependabot using the `workflow_dispatch` event. - Configured the workflow to run Dependabot for GitHub Actions updates. * fix(ga): A mapping was not expected * Run dependabot (#800) * fix(ga): Add GitHub Actions workflow to manually trigger Dependabot. - Created a new workflow file `.github/workflows/run-dependabot.yml` to allow manual triggering of Dependabot using the `workflow_dispatch` event. - Configured the workflow to run Dependabot for GitHub Actions updates. * fix(ga): A mapping was not expected * fix(ga): Unexpected input(s) 'package-ecosystem', 'directory', valid inputs are ['alert-lookup', 'compat-lookup', 'github-token', 'skip-commit-verification', 'skip-verification'] * Update run-dependabot.yml * Delete .github/workflows/run-dependabot.yml * chore(jenkins): Update Jenkins plugins (#801) * chore(deps): bump debian in /dockerfiles/agent-discovery (#806) Bumps debian from bookworm-20241016-slim to bookworm-20241111-slim. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#807) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(deps): bump updatecli/updatecli-action from 2.70.0 to 2.71.0 (#805) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.70.0 to 2.71.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.70.0...v2.71.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#809) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#811) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#813) ... ockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#812) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * Bump ssh-agent version to 6.3.0 (#815) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#818) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * Bump ssh-agent version to 6.4.0 (#819) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(deps): bump updatecli/updatecli-action from 2.71.0 to 2.72.0 (#822) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.71.0 to 2.72.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.71.0...v2.72.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#824) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "debian" (#823) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#825) * chore(jenkins): Update Jenkins plugins (#826) * chore(jenkins): Update Jenkins plugins (#828) * chore(jenkins): Update Jenkins plugins (#831) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#832) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#834) * chore: deps(dockerfile): bump golang version (#833) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * Bump ssh-agent version to 6.5.0 (#840) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(deps): bump updatecli/updatecli-action from 2.72.0 to 2.73.0 (#843) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.72.0 to 2.73.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.72.0...v2.73.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump debian in /dockerfiles/agent-discovery (#842) Bumps debian from bookworm-20241111-slim to bookworm-20241202-slim. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#844) * chore(jenkins): Update Jenkins plugins (#848) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#849) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#852) * chore(deps): bump anchore/scan-action from 5.3.0 to 6.0.0 (#853) Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 5.3.0 to 6.0.0. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/869c549e657a088dc0441b08ce4fc0ecdac2bb65...abae793926ec39a78ab18002bc7fc45bbbd94342) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#854) * chore(jenkins): Update Jenkins plugins (#858) * chore(jenkins): Update Jenkins plugins (#860) * chore(jenkins): Update Jenkins plugins (#862) * chore(jenkins): Update Jenkins plugins (#864) * chore(deps): bump updatecli/updatecli-action from 2.73.0 to 2.74.0 (#865) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.73.0 to 2.74.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.73.0...v2.74.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#867) * chore(jenkins): Update Jenkins plugins (#872) * chore: deps(dockerfile): bump image "debian" (#873) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#877) * chore(deps): bump updatecli/updatecli-action from 2.74.0 to 2.75.0 (#875) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.74.0 to 2.75.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.74.0...v2.75.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump debian in /dockerfiles/agent-discovery (#876) Bumps debian from bookworm-20241202-slim to bookworm-20241223-slim. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(jenkins): Update Jenkins plugins (#879) * Bump ssh-agent version to 6.6.0 (#880) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#883) * chore(jenkins): Update Jenkins plugins (#885) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#886) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#890) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#891) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#893) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#895) ... ockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#896) * chore(jenkins): Update Jenkins plugins (#898) * chore(jenkins): Update Jenkins plugins (#904) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/golang (#899) Bumps jenkins/ssh-agent from 6.6.0 to 6.7.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(deps): bump updatecli/updatecli-action from 2.75.0 to 2.76.0 (#900) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.75.0 to 2.76.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.75.0...v2.76.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(deps): bump jenkins/ssh-agent in /dockerfiles/multi (#901) Bumps jenkins/ssh-agent from 6.6.0 to 6.7.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(deps): bump jenkins/ssh-agent in /dockerfiles/maven (#902) Bumps jenkins/ssh-agent from 6.6.0 to 6.7.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(deps): bump jenkins/ssh-agent in /dockerfiles/node (#903) Bumps jenkins/ssh-agent from 6.6.0 to 6.7.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore: deps(dockerfile): bump image "debian" (#905) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#906) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * Bump ssh-agent version to 6.7.0 (#907) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(jenkins): Update Jenkins plugins (#912) * chore(jenkins): Update Jenkins plugins (#915) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#916) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#919) * chore: deps(dockerfile): bump golang version (#920) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#923) * chore(jenkins): Update Jenkins plugins (#926) * Bump ssh-agent version to 6.8.0 (#925) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(deps): bump debian in /dockerfiles/agent-discovery (#927) Bumps debian from bookworm-20241223-slim to bookworm-20250113-slim. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#928) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#930) * chore(jenkins): Update Jenkins plugins (#935) * chore(jenkins): Update Jenkins plugins (#938) * chore(jenkins): Update Jenkins plugins (#940) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#942) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#943) * chore(jenkins): Update Jenkins plugins (#944) * chore(deps): bump updatecli/updatecli-action from 2.76.0 to 2.77.0 (#947) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.76.0 to 2.77.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.76.0...v2.77.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump anchore/scan-action from 6.0.0 to 6.1.0 (#946) Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/RELEASE.md) - [Commits](https://github.com/anchore/scan-action/compare/abae793926ec39a78ab18002bc7fc45bbbd94342...7c05671ae9be166aeb155bad2d7df9121823df32) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#948) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#949) * chore(jenkins): Update Jenkins plugins (#950) * chore(jenkins): Update Jenkins plugins (#951) * chore(jenkins): Update Jenkins plugins (#964) * Bump ssh-agent version to 6.9.0 (#956) * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#966) * chore: deps(dockerfile): bump image "debian" (#965) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#967) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump golang version (#968) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#969) * chore(jenkins): Update Jenkins plugins (#977) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#973) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#975) ... ockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#978) * chore(deps): bump debian in /dockerfiles/agent-discovery (#982) Bumps debian from bookworm-20250113-slim to bookworm-20250203-slim. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#983) * chore(jenkins): Update Jenkins plugins (#986) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#985) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#987) * chore: deps(dockerfile): bump golang version (#989) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#988) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#994) * chore(jenkins): Update Jenkins plugins (#995) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#996) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#999) * chore(jenkins): Update Jenkins plugins (#1002) * Add C++ profile to Docker Compose and Updatecli (#1004) * chore(deps): bump debian in /dockerfiles/sidekick Bumps debian from bookworm-20231218 to bookworm-20240110. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(deps): bump updatecli/updatecli-action from 2.52.0 to 2.53.0 Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.52.0 to 2.53.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.52.0...v2.53.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump anchore/scan-action from 3.5.0 to 3.6.0 Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 3.5.0 to 3.6.0. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/1d59d90b47fc11ff8f97822da6c25eec888f81cf...0550541809b9c6abbf7cbc43d12400db47056507) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(deps): bump updatecli/updatecli-action from 2.53.0 to 2.54.0 Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.53.0 to 2.54.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.53.0...v2.54.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump debian in /dockerfiles/sidekick Bumps debian from bookworm-20240110 to bookworm-20240130. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/python Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/android Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/maven Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump release-drafter/release-drafter from 5 to 6 Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5 to 6. - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](https://github.com/release-drafter/release-drafter/compare/v5...v6) --- updated-dependencies: - dependency-name: release-drafter/release-drafter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * chore(deps): bump anchore/scan-action from 3.6.0 to 3.6.4 Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 3.6.0 to 3.6.4. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/0550541809b9c6abbf7cbc43d12400db47056507...3343887d815d7b07465f6fdcd395bd66508d486a) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/multi Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/node Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump codacy/codacy-analysis-cli-action from 4.3.0 to 4.4.0 Bumps [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) from 4.3.0 to 4.4.0. - [Release notes](https://github.com/codacy/codacy-analysis-cli-action/releases) - [Commits](https://github.com/codacy/codacy-analysis-cli-action/compare/5cc54a75f9ad88159bb54046196d920e40e367a5...33d455949345bddfdb845fba76b57b70cc83754b) --- updated-dependencies: - dependency-name: codacy/codacy-analysis-cli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(deps): bump debian in /dockerfiles/sidekick Bumps debian from bookworm-20240130 to bookworm-20240211. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] * chore(deps): bump updatecli/updatecli-action from 2.54.0 to 2.55.0 (#114) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/multi (#115) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/node (#116) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/android (#117) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/maven (#118) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/python (#119) * chore(jenkins): Update Jenkins plugins * Multi controller is the same as simple controller * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(deps): Bump debian in /dockerfiles/sidekick Bumps debian from bookworm-20240311 to bookworm-20240408. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(deps): bump codacy/codacy-analysis-cli-action from 4.4.0 to 4.4.1 Bumps [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) from 4.4.0 to 4.4.1. - [Release notes](https://github.com/codacy/codacy-analysis-cli-action/releases) - [Commits](https://github.com/codacy/codacy-analysis-cli-action/compare/33d455949345bddfdb845fba76b57b70cc83754b...3ff8e64eb4b714c4bee91b7b4eea31c6fc2c4f93) --- updated-dependencies: - dependency-name: codacy/codacy-analysis-cli-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * chore(deps): bump updatecli/updatecli-action from 2.57.0 to 2.58.0 Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.57.0 to 2.58.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.57.0...v2.58.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(deps): bump updatecli/updatecli-action from 2.58.0 to 2.59.0 Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.58.0 to 2.59.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.58.0...v2.59.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Update Docker versions * Not to be lost. * not to be lost * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * Add C++ profile to Docker Compose and Updatecli Fixes #376 Add a new profile in the Docker Compose file for building C++ source code with Jenkins. * **Docker Compose Files:** * Add a `cpp` profile in `docker-compose.yaml` and `build-docker-compose.yaml`. * Include necessary service definitions, dependencies, healthcheck, and volume configurations. * **Dockerfile:** * Create `dockerfiles/cpp/Dockerfile` with necessary C++ build tools including `build-essential`, `cmake`, `gcc`, `g++`, `clang`, `make`, `libstdc++-dev`, and `pkg-config`. * Set environment variables and ensure ownership of the Jenkins agent home directory. * **Updatecli Manifest:** * Add `updatecli/updatecli.d/cpp.yaml` for managing the C++ Dockerfile. * Ensure the manifest includes the necessary dependencies for the C++ build environment. * **GitHub Actions:** * Modify `.github/workflows/github-docker-registry-push.yml` to add a new job for building and pushing the C++ Docker image to ghcr. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/gounthar/quickstart-tutorials/issues/376?shareId=XXXX-XXXX-XXXX-XXXX). * fix(updatecli): Removed cpp manifest. * fix(docker): Update libstdc++ dependency to libstdc++-12-dev * feat(jenkins): Add cpp-agent configuration for Docker image in ssh-agent.yaml --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: GitHub Action * Add cpp profile (#1005) * chore(deps): bump debian in /dockerfiles/sidekick Bumps debian from bookworm-20231218 to bookworm-20240110. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(deps): bump updatecli/updatecli-action from 2.52.0 to 2.53.0 Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.52.0 to 2.53.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.52.0...v2.53.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump anchore/scan-action from 3.5.0 to 3.6.0 Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 3.5.0 to 3.6.0. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/1d59d90b47fc11ff8f97822da6c25eec888f81cf...0550541809b9c6abbf7cbc43d12400db47056507) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(deps): bump updatecli/updatecli-action from 2.53.0 to 2.54.0 Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.53.0 to 2.54.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.53.0...v2.54.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump debian in /dockerfiles/sidekick Bumps debian from bookworm-20240110 to bookworm-20240130. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/python Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/android Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/maven Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump release-drafter/release-drafter from 5 to 6 Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5 to 6. - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](https://github.com/release-drafter/release-drafter/compare/v5...v6) --- updated-dependencies: - dependency-name: release-drafter/release-drafter dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * chore(deps): bump anchore/scan-action from 3.6.0 to 3.6.4 Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 3.6.0 to 3.6.4. - [Release notes](https://github.com/anchore/scan-action/releases) - [Changelog](https://github.com/anchore/scan-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/anchore/scan-action/compare/0550541809b9c6abbf7cbc43d12400db47056507...3343887d815d7b07465f6fdcd395bd66508d486a) --- updated-dependencies: - dependency-name: anchore/scan-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/multi Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump jenkins/ssh-agent in /dockerfiles/node Bumps jenkins/ssh-agent from 5.22.0 to 5.24.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(deps): bump codacy/codacy-analysis-cli-action from 4.3.0 to 4.4.0 Bumps [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) from 4.3.0 to 4.4.0. - [Release notes](https://github.com/codacy/codacy-analysis-cli-action/releases) - [Commits](https://github.com/codacy/codacy-analysis-cli-action/compare/5cc54a75f9ad88159bb54046196d920e40e367a5...33d455949345bddfdb845fba76b57b70cc83754b) --- updated-dependencies: - dependency-name: codacy/codacy-analysis-cli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(deps): bump debian in /dockerfiles/sidekick Bumps debian from bookworm-20240130 to bookworm-20240211. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] * chore(deps): bump updatecli/updatecli-action from 2.54.0 to 2.55.0 (#114) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/multi (#115) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/node (#116) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/android (#117) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/maven (#118) * chore(deps): bump jenkins/ssh-agent in /dockerfiles/python (#119) * chore(jenkins): Update Jenkins plugins * Multi controller is the same as simple controller * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(deps): Bump debian in /dockerfiles/sidekick Bumps debian from bookworm-20240311 to bookworm-20240408. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(deps): bump codacy/codacy-analysis-cli-action from 4.4.0 to 4.4.1 Bumps [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) from 4.4.0 to 4.4.1. - [Release notes](https://github.com/codacy/codacy-analysis-cli-action/releases) - [Commits](https://github.com/codacy/codacy-analysis-cli-action/compare/33d455949345bddfdb845fba76b57b70cc83754b...3ff8e64eb4b714c4bee91b7b4eea31c6fc2c4f93) --- updated-dependencies: - dependency-name: codacy/codacy-analysis-cli-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] * chore(deps): bump updatecli/updatecli-action from 2.57.0 to 2.58.0 Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.57.0 to 2.58.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.57.0...v2.58.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(deps): bump updatecli/updatecli-action from 2.58.0 to 2.59.0 Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.58.0 to 2.59.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.58.0...v2.59.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Update Docker versions * Not to be lost. * not to be lost * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * chore(jenkins): Update Jenkins plugins * Add C++ profile to Docker Compose and Updatecli Fixes #376 Add a new profile in the Docker Compose file for building C++ source code with Jenkins. * **Docker Compose Files:** * Add a `cpp` profile in `docker-compose.yaml` and `build-docker-compose.yaml`. * Include necessary service definitions, dependencies, healthcheck, and volume configurations. * **Dockerfile:** * Create `dockerfiles/cpp/Dockerfile` with necessary C++ build tools including `build-essential`, `cmake`, `gcc`, `g++`, `clang`, `make`, `libstdc++-dev`, and `pkg-config`. * Set environment variables and ensure ownership of the Jenkins agent home directory. * **Updatecli Manifest:** * Add `updatecli/updatecli.d/cpp.yaml` for managing the C++ Dockerfile. * Ensure the manifest includes the necessary dependencies for the C++ build environment. * **GitHub Actions:** * Modify `.github/workflows/github-docker-registry-push.yml` to add a new job for building and pushing the C++ Docker image to ghcr. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/gounthar/quickstart-tutorials/issues/376?shareId=XXXX-XXXX-XXXX-XXXX). * fix(updatecli): Removed cpp manifest. * fix(docker): Update libstdc++ dependency to libstdc++-12-dev * feat(jenkins): Add cpp-agent configuration for Docker image in ssh-agent.yaml * fix(docker): Update healthcheck syntax and add cpp profile to Docker Compose * fix(github): Correct tag format for cpp agent in Docker registry push --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: GitHub Action * chore(docker): Add ARG for the architecture * feat(gitpod): Add the cpp target. * fix(compose): branch suffix needs a dollar (who doesn't?) * fix(ga): Remove one `_` (#1006) * fix(docker): No need for an architecture ARG * fix(compose): No need for cpp extension * chore(jenkins): Update Jenkins plugins (#1007) * chore(jenkins): Update Jenkins plugins (#1008) * chore(jenkins): Update Jenkins plugins (#1010) * chore(jenkins): Update Jenkins plugins (#1013) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1012) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(deps): bump updatecli/updatecli-action from 2.77.0 to 2.78.1 (#1014) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.77.0 to 2.78.1. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.77.0...v2.78.1) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "debian" (#1016) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1015) * chore(jenkins): Update Jenkins plugins (#1022) * chore(jenkins): Update Jenkins plugins (#1023) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1024) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1027) * chore(jenkins): Update Jenkins plugins (#1028) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1030) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1033) * chore(deps): bump debian in /dockerfiles/agent-discovery (#1032) Bumps debian from bookworm-20250203-slim to bookworm-20250224-slim. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(jenkins): Update Jenkins plugins (#1035) * chore: deps(dockerfile): bump golang version (#1034) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(jenkins): Update Jenkins plugins (#1041) * Bump ssh-agent version to 6.10.0 (#1044) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/cpp/... ... Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1042) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#1043) ... ockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1050) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1051) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1055) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1058) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * feat: add dotnet agent (#1057) * feat: add dotnet quickstart fix: fix build fix: fix context * fix: add dotnet build * feat: add coverage plugin for showing the coverage * feat: add dotnet quickstart fix: fix build fix: fix context * fix: add dotnet build * chore(deps): bump updatecli/updatecli-action from 2.78.1 to 2.79.0 (#1061) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.78.1 to 2.79.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.78.1...v2.79.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1063) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1064) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1067) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1069) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "debian" (#1068) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1075) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1076) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1078) * chore(gitpod): Add dotnet * chore(jenkins): Update Jenkins plugins (#1079) * chore(deps): bump debian in /dockerfiles/agent-discovery (#1083) Bumps debian from bookworm-20250224-slim to bookworm-20250317-slim. --- updated-dependencies: - dependency-name: debian dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1084) * chore(jenkins): Update Jenkins plugins (#1089) * Bump ssh-agent version to 6.11.1 (#1091) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/cpp/... ... Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1090) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(deps): bump updatecli/updatecli-action from 2.79.0 to 2.81.0 (#1096) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.79.0 to 2.81.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.79.0...v2.81.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-version: 2.81.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump jenkins/ssh-agent in /dockerfiles/dotnet (#1097) Bumps jenkins/ssh-agent from 6.10.0 to 6.11.1. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-version: 6.11.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(jenkins): Update Jenkins plugins (#1098) * chore(jenkins): Update Jenkins plugins (#1100) * chore: deps(dockerfile): bump golang version (#1101) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1105) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1106) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#1107) ... ockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten * chore(jenkins): Update Jenkins plugins (#1112) * chore(jenkins): Update Jenkins plugins (#1113) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1115) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore: deps(dockerfile): bump image "debian" (#1114) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1118) * chore(jenkins): Update Jenkins plugins (#1120) * Bump ssh-agent version to 6.12.0 (#1125) * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/cpp/... ... Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1126) * chore(deps): bump updatecli/updatecli-action from 2.81.0 to 2.82.0 (#1130) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.81.0 to 2.82.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.81.0...v2.82.0) --- updated-dependencies: - dependency-name: updatecli/updatecli-action dependency-version: 2.82.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump debian in /dockerfiles/agent-discovery (#1129) Bumps debian from bookworm-20250317-slim to bookworm-20250407-slim. --- updated-dependencies: - dependency-name: debian dependency-version: bookworm-20250407-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump jenkins/ssh-agent in /dockerfiles/dotnet (#1128) Bumps jenkins/ssh-agent from 6.11.1 to 6.12.0. --- updated-dependencies: - dependency-name: jenkins/ssh-agent dependency-version: 6.12.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1131) * chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1132) Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> * chore(jenkins): Update Jenkins plugins (#1133) * chore(jenkins): Update Jenkins plugins (#1134) * chore(dockerfile): update jenkins/ssh-agent to version 6.12.0-jdk21 (#1135) * chore(jenkins): Update Jenkins plugins (#1136) * chore(dockerfile): update tagfilter for jenkins/ssh-agent to enforce versioning (#1138) --------- Signed-off-by: dependabot[bot] Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: GitHub Action Co-authored-by: Bervianto Leo Pratama --- .github/dependabot.yml | 5 ++ .github/labeler.yml | 6 +++ .github/workflows/anchore.yml | 2 +- .../workflows/github-docker-registry-push.yml | 20 ++++++++ .github/workflows/updatecli.yaml | 2 +- .gitpod/Dockerfile | 2 +- build-docker-compose.yaml | 37 ++++++++++++++ docker-compose.yaml | 48 ++++++++++++++++- dockerfiles/Dockerfile | 4 +- dockerfiles/agent-discovery/Dockerfile | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/cpp/Dockerfile | 19 +++++++ dockerfiles/dotnet/Dockerfile | 22 ++++++++ dockerfiles/gitpodURL.sh | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/plugins.txt | 13 ++--- dockerfiles/python/Dockerfile | 2 +- extract-profiles.sh | 51 +++++++++++++++++++ updatecli/updatecli.d/ssh-agent.yaml | 15 +++++- 22 files changed, 240 insertions(+), 22 deletions(-) create mode 100644 dockerfiles/cpp/Dockerfile create mode 100644 dockerfiles/dotnet/Dockerfile create mode 100755 extract-profiles.sh diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a350a4d1..3e0e3aa0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -58,3 +58,8 @@ updates: schedule: interval: weekly open-pull-requests-limit: 10 + - package-ecosystem: docker + directory: "./dockerfiles/dotnet" + schedule: + interval: weekly + open-pull-requests-limit: 10 diff --git a/.github/labeler.yml b/.github/labeler.yml index 6dbfec0c..97252803 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -52,3 +52,9 @@ multi: github_actions: - changed-files: - any-glob-to-any-file: '/.github/workflows/*' + + +# Add 'dotnet' label to any change to Dockerfile* files within the root dir +dotnet: + - changed-files: + - any-glob-to-any-file: 'dockerfiles/dotnet/**' diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index b1d05a49..f99103d6 100644 --- a/.github/workflows/anchore.yml +++ b/.github/workflows/anchore.yml @@ -38,7 +38,7 @@ jobs: run: cd ./dockerfiles/ && docker build . --file Dockerfile --tag localbuild/testimage:latest - name: Run the Anchore Grype scan action - uses: anchore/scan-action@d43cc1dfea6a99ed123bf8f3133f1797c9b44492 + uses: anchore/scan-action@7c05671ae9be166aeb155bad2d7df9121823df32 id: scan with: path: "." diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index 8e015f0a..15430e5c 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -204,3 +204,23 @@ jobs: platforms: linux/amd64, linux/arm64 push: true tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:golang_${{ env.BRANCH }} + + - name: Build and push the jenkins agent for cpp tutorial + # This step builds and pushes the Jenkins agent for the C++ tutorial + if: contains(env.files, 'dockerfiles/cpp/Dockerfile') + uses: docker/build-push-action@v6 + with: + context: ./dockerfiles/cpp + platforms: linux/amd64, linux/aarch64 + push: true + tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:cpp_${{ env.BRANCH }} + + - name: Build and push the jenkins agent for dotnet tutorial + # This step builds and pushes the Jenkins agent for the C++ tutorial + if: contains(env.files, 'dockerfiles/dotnet/Dockerfile') + uses: docker/build-push-action@v6 + with: + context: ./dockerfiles/dotnet + platforms: linux/amd64, linux/aarch64 + push: true + tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:dotnet_${{ env.BRANCH }} diff --git a/.github/workflows/updatecli.yaml b/.github/workflows/updatecli.yaml index a6875320..6c7cb45d 100644 --- a/.github/workflows/updatecli.yaml +++ b/.github/workflows/updatecli.yaml @@ -23,7 +23,7 @@ jobs: # This step installs Updatecli in the runner using the updatecli-action - name: Install Updatecli in the runner - uses: updatecli/updatecli-action@v2.62.0 + uses: updatecli/updatecli-action@v2.82.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 2aeec071..d1f93cfe 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-04-07-09-59-40 +FROM gitpod/workspace-full:2025-04-14-12-26-26 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 8964cc70..30c9b74c 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -25,6 +25,7 @@ services: - android - multi - golang + - dotnet - default # This service depends on the sidekick_service (generating SSH keys and JCasc token) completing successfully. depends_on: @@ -205,6 +206,42 @@ services: retries: 5 volumes: - agent-ssh-dir:/home/jenkins/.ssh:ro # Mounts the agent-ssh-dir volume to the /home/jenkins/.ssh path inside the container as read-only + cpp: + build: dockerfiles/cpp/. + container_name: desktop-jenkins_agent-1-cpp + profiles: + - cpp + depends_on: + sidekick_service: + condition: service_completed_successfully + jenkins_controller: + condition: service_started + healthcheck: + test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + interval: 5s + timeout: 10s + retries: 5 + volumes: + - agent-ssh-dir:/home/jenkins/.ssh:ro + dotnet: + build: dockerfiles/dotnet/. + container_name: desktop-jenkins_agent-1-dotnet + profiles: + - dotnet + depends_on: + sidekick_service: + condition: service_completed_successfully + jenkins_controller: + condition: service_started + ports: + - "5000:5000" + healthcheck: + test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + interval: 5s + timeout: 10s + retries: 5 + volumes: + - agent-ssh-dir:/home/jenkins/.ssh:ro volumes: jenkins_home: null agent-ssh-dir: diff --git a/docker-compose.yaml b/docker-compose.yaml index 73dc77bc..401549c8 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -35,6 +35,7 @@ services: - android - multi - golang + - dotnet - default # This service depends on the sidekick_service (generating SSH keys and JCasc token) completing successfully. depends_on: @@ -59,8 +60,9 @@ services: - python - node - android - - multi - golang + - cpp + - dotnet - default # The CASC_RELOAD_TOKEN environment variable is used by the Jenkins controller to restart the Configuration as Code (JCasc) plugin configuration. environment: @@ -282,6 +284,50 @@ services: retries: 5 volumes: - agent-ssh-dir:/home/jenkins/.ssh:ro # Mounts the agent-ssh-dir volume to the /home/jenkins/.ssh path inside the container as read-only + cpp: + image: ${IMAGE_PREFIX}/${GHCR_USERNAME}/quickstart-tutorials/jenkinsci-tutorials:cpp_${BRANCH_SUFFIX} + environment: + - GITPOD_WORKSPACE_URL=${GITPOD_WORKSPACE_URL} + container_name: desktop-jenkins_agent-1 + profiles: + - cpp + depends_on: + sidekick_service: + condition: service_completed_successfully # Depends on the successful completion of the sidekick_service + jenkins_controller: + condition: service_started + ports: + - "3000:3000" + healthcheck: + test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + # Checks if the authorized_keys file exists in the /home/jenkins/.ssh path + interval: 5s + timeout: 10s + retries: 5 + volumes: + - agent-ssh-dir:/home/jenkins/.ssh:ro # Mounts the agent-ssh-dir volume to the /home/jenkins/.ssh path inside the container as read-only + dotnet: + image: ${IMAGE_PREFIX}/${GHCR_USERNAME}/quickstart-tutorials/jenkinsci-tutorials:dotnet_${BRANCH_SUFFIX} + environment: + - GITPOD_WORKSPACE_URL=${GITPOD_WORKSPACE_URL} + container_name: desktop-jenkins_agent-1 + profiles: + - dotnet + depends_on: + sidekick_service: + condition: service_completed_successfully # Depends on the successful completion of the sidekick_service + jenkins_controller: + condition: service_started + ports: + - "5000:5000" + healthcheck: + test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + # Checks if the authorized_keys file exists in the /home/jenkins/.ssh path + interval: 5s + timeout: 10s + retries: 5 + volumes: + - agent-ssh-dir:/home/jenkins/.ssh:ro # Mounts the agent-ssh-dir volume to the /home/jenkins/.ssh path inside the container as read-only volumes: jenkins_home: null empty_jenkins_home: null diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 80e42b59..29e19ee5 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,10 +1,10 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.505-jdk17 +ARG JENKINS_VERSION=2.505-jdk21 # We then use the official Jenkins image with the specified version as our base image. -FROM jenkins/jenkins:"${JENKINS_VERSION}" +FROM jenkins/jenkins:"${JENKINS_VERSION}"-jdk21 # We switch to the root user to have the necessary permissions for the upcoming operations. USER root diff --git a/dockerfiles/agent-discovery/Dockerfile b/dockerfiles/agent-discovery/Dockerfile index aaa52316..1801112c 100644 --- a/dockerfiles/agent-discovery/Dockerfile +++ b/dockerfiles/agent-discovery/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20241016-slim as prepare-stage +FROM debian:bookworm-20250407-slim as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 4c73b730..62411242 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0 as ssh-agent +FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile new file mode 100644 index 00000000..4df3630d --- /dev/null +++ b/dockerfiles/cpp/Dockerfile @@ -0,0 +1,19 @@ +FROM jenkins/ssh-agent:6.12.0-jdk21 + +# Install necessary C++ build tools +RUN apt-get update && apt-get install -y --no-install-recommends \ + build-essential \ + cmake \ + gcc \ + g++ \ + clang \ + make \ + libstdc++-12-dev \ + pkg-config \ + && rm -rf /var/lib/apt/lists/* + +# Set environment variables +ENV PATH="/usr/local/bin:$PATH" + +# Ensure the ownership of the Jenkins agent home directory is set to the Jenkins user +RUN chown -R jenkins:jenkins "${JENKINS_AGENT_HOME}" diff --git a/dockerfiles/dotnet/Dockerfile b/dockerfiles/dotnet/Dockerfile new file mode 100644 index 00000000..55a5d303 --- /dev/null +++ b/dockerfiles/dotnet/Dockerfile @@ -0,0 +1,22 @@ +FROM jenkins/ssh-agent:6.12.0-jdk21 AS ssh-agent + +# install dotnet dependencies +RUN apt-get update && apt-get install -y --no-install-recommends libc6 libgcc1 libgssapi-krb5-2 libicu72 libssl3 libstdc++6 zlib1g wget && apt-get clean && \ + rm -rf /var/lib/apt/lists/* + +# Now time to install dotnet +ARG DOTNET_VERSION=8.0 + +# Set SHELL flags for RUN commands to allow -e and pipefail +# Rationale:https://github.com/hadolint/hadolint/wiki/DL4006 +SHELL ["/bin/bash", "-eo", "pipefail", "-c"] + +RUN wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh && chmod +x ./dotnet-install.sh && \ + ./dotnet-install.sh --channel ${DOTNET_VERSION} --install-dir /usr/local/dotnet + +ENV DOTNET_ROOT=/usr/local/dotnet +ENV PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools + +RUN echo "PATH=${PATH}" >> /etc/environment && chown -R jenkins:jenkins "${JENKINS_AGENT_HOME}" && \ + dotnet --list-sdks + diff --git a/dockerfiles/gitpodURL.sh b/dockerfiles/gitpodURL.sh index ce668ed5..6513e01b 100755 --- a/dockerfiles/gitpodURL.sh +++ b/dockerfiles/gitpodURL.sh @@ -7,7 +7,7 @@ config_file="/workspace/quickstart-tutorials/dockerfiles/jenkins.yaml" service_url=$(echo "$GITPOD_WORKSPACE_URL" | awk -F/ '{print $3}') # Define an array of targets -targets=("maven" "node" "python" "multi" "default") +targets=("maven" "node" "python" "multi" "cpp" "dotnet" "default") # Initialize an empty string for the message message="As a gentle reminder, the current profiles are: " diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 4accc196..01899258 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0 as ssh-agent +FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 4850c684..b8cb48c7 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0 as ssh-agent +FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 2e1669ce..847acdf5 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0 as ssh-agent +FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 34eec4ae..2c3830f2 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0 as ssh-agent +FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index e1c38eaf..d1065e43 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,15 +7,16 @@ branch-api:2.1217.v43d8b_b_d8b_2c7 build-timeout:1.38 caffeine-api:3.2.0-166.v72a_6d74b_870f checks-api:367.v18b_7f530e54a_ -cloudbees-folder:6.1008.v5ed27a_3a_e475 +cloudbees-folder:6.1012.v79a_86a_1ea_c1f commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 configuration-as-code:1953.v148f87d74b_1e +coverage:2.4.0 credentials-binding:687.v619cb_15e923f -credentials:1413.va_51c53703df1 +credentials:1415.v831096eb_5534 display-url-api:2.209.v582ed814ff2f durable-task:587.v84b_877235b_45 -echarts-api:5.6.0-2 +echarts-api:5.6.0-3 font-awesome-api:6.7.2-1 git-client:6.1.3 git:5.7.0 @@ -38,13 +39,13 @@ locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.6 matrix-project:847.v88a_f90ff9f20 -metrics:4.2.21-464.vc9fa_a_0d6265d +metrics:4.2.30-468.v5973151f8cfc mina-sshd-api-common:2.15.0-161.vb_200831a_c15b_ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 pipeline-graph-analysis:235.vb_a_a_36b_f248c2 -pipeline-graph-view:430.v4cf821b_20632 +pipeline-graph-view:435.vcfcb_fb_d4ef85 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:127.vb_52887ca_3b_6d @@ -74,7 +75,7 @@ workflow-api:1371.ve334280b_d611 workflow-basic-steps:1079.vce64b_a_929c5a_ workflow-cps:4080.va_15b_44a_91525 workflow-durable-task-step:1405.v1fcd4a_d00096 -workflow-job:1508.v9cb_c3a_a_89dfd +workflow-job:1520.v56d65e3b_4566 workflow-multibranch:806.vb_b_688f609ee9 workflow-scm-step:437.v05a_f66b_e5ef8 workflow-step-api:700.v6e45cb_a_5a_a_21 diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 91405fae..66dbeff6 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.12.0 as ssh-agent +FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: diff --git a/extract-profiles.sh b/extract-profiles.sh new file mode 100755 index 00000000..5e09eaa8 --- /dev/null +++ b/extract-profiles.sh @@ -0,0 +1,51 @@ +#!/bin/bash +set -e + +original_file="docker-compose.yaml" + +# Function to add a service and its dependencies to the included_services list +add_service_and_dependencies() { + local service=$1 + # Mark the service as included + included_services["$service"]=1 + # Check if the service has dependencies + if yq e ".services.${service}.depends_on" "$original_file" -e > /dev/null; then + # Read dependencies of the service + local dependencies=($(yq e ".services.${service}.depends_on | keys" "$original_file" -o json | jq -r '.[]')) + # Recursively add dependencies + for dependency in "${dependencies[@]}"; do + if [[ -z "${included_services["$dependency"]}" ]]; then + add_service_and_dependencies "$dependency" + fi + done + fi +} + +# Step 1: Collect all dependencies +declare -A all_dependencies +services=$(yq e '.services | keys' "$original_file" -o json | jq -r '.[]') +for service in $services; do + dependencies=$(yq e ".services.$service.depends_on | keys" "$original_file" -o json | jq -r '.[]') + for dependency in $dependencies; do + all_dependencies["$dependency"]=1 + done +done + +# Step 2: Process each profile and include dependencies +for profile in $(yq e '.services[].profiles[]?' "$original_file" | sort -u); do + echo "Processing profile: $profile" + # Initialize an associative array to track included services + declare -A included_services + # Find and include services matching the profile + matching_services=$(yq e ".services | with_entries(select(.value.profiles[]? == \"$profile\")) | keys" "$original_file" -o json | jq -r '.[]') + for service in $matching_services; do + add_service_and_dependencies "$service" + done + # Correctly format the list of included services for yq query + included_services_keys=$(printf "'%s'," "${!included_services[@]}") + included_services_keys="[${included_services_keys%,}]" # Remove trailing comma and wrap in brackets + + # Generate the docker-compose file for the profile + echo "Generating docker-compose-$profile.yaml" + yq e ".services | with_entries(select(.key as \$k | .key == \"$included_services_list\"))" "$original_file" > "docker-compose-$profile.yaml" +done diff --git a/updatecli/updatecli.d/ssh-agent.yaml b/updatecli/updatecli.d/ssh-agent.yaml index bef372b4..76713d61 100644 --- a/updatecli/updatecli.d/ssh-agent.yaml +++ b/updatecli/updatecli.d/ssh-agent.yaml @@ -19,10 +19,11 @@ sources: kind: dockerimage spec: image: jenkins/ssh-agent - tagfilter: ^\d*(\.\d*){2}$ + # Use \d+ to ensure major, minor, patch are present + tagfilter: ^\d+\.\d+\.\d+-jdk21$ versionfilter: kind: semver - pattern: '>=5.20.0' + pattern: '>=0.0.0-0' targets: jenkins/python-agent: @@ -85,6 +86,16 @@ targets: matcher: jenkins/ssh-agent sourceid: jenkins/ssh-agent scmid: default + jenkins/cpp-agent: + name: '[jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/cpp/Dockerfile"' + kind: dockerfile + spec: + file: dockerfiles/cpp/Dockerfile + instruction: + keyword: FROM + matcher: jenkins/ssh-agent + sourceid: jenkins/ssh-agent + scmid: default default-agent: name: '[jenkins/ssh-agent] Bump Docker image tag in "docker-compose.yaml"' kind: yaml From a635dc83fe31f1693227cf054324b9e180a5dfba Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 16 Apr 2025 11:16:17 +0200 Subject: [PATCH 207/235] chore(updatecli): Move to JDK 21. --- updatecli/updatecli.d/jenkins-weekly.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/updatecli/updatecli.d/jenkins-weekly.yaml b/updatecli/updatecli.d/jenkins-weekly.yaml index 210e8719..3a6ce505 100644 --- a/updatecli/updatecli.d/jenkins-weekly.yaml +++ b/updatecli/updatecli.d/jenkins-weekly.yaml @@ -25,14 +25,14 @@ sources: kind: jenkins spec: release: weekly # Specifies that the weekly release of Jenkins is to be fetched - JenkinsLatestWeeklyJDK17: - name: Get the latest Jenkins Weekly version with JDK 17 + JenkinsLatestWeeklyJDK21: + name: Get the latest Jenkins Weekly version with JDK 21 kind: jenkins spec: release: weekly # Specifies that the weekly release of Jenkins is to be fetched - jdk: 17 # Specifies JDK 17 for the Jenkins version + jdk: 21 # Specifies JDK 21 for the Jenkins version transformers: - - addsuffix: "-jdk17" # Adds a suffix to the version to denote JDK 17 + - addsuffix: "-jdk21" # Adds a suffix to the version to denote JDK 21 # Define conditions that must be met for the pipeline to proceed. conditions: @@ -49,13 +49,13 @@ conditions: spec: image: "jenkins/jenkins" # Specifies the Docker image to check transformers: - - addsuffix: "-jdk17" # Adds a suffix to denote JDK 17 + - addsuffix: "-jdk21" # Adds a suffix to denote JDK 21 # Define the targets for the pipeline. These are the end goals the pipeline aims to achieve. targets: setJenkinsLatestWeekly: kind: dockerfile - sourceid: JenkinsLatestWeeklyJDK17 # Links this target to the JenkinsLatestWeeklyJDK17 source + sourceid: JenkinsLatestWeeklyJDK21 # Links this target to the JenkinsLatestWeeklyJDK21 source spec: file: dockerfiles/Dockerfile # Specifies the Dockerfile to be updated instruction: @@ -69,7 +69,7 @@ actions: default: kind: github/pullrequest scmid: default # Links this action to the default SCM configuration - title: Update Jenkins Weekly versions to {{ source "JenkinsLatestWeekly" }}-jdk17 in the controller Dockerfile + title: Update Jenkins Weekly versions to {{ source "JenkinsLatestWeekly" }}-jdk21 in the controller Dockerfile spec: labels: - dependencies # Label for the pull request From a6af22ecb6ec8bc3734b16c5e6bba886435c4d08 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Apr 2025 11:16:50 +0200 Subject: [PATCH 208/235] Bump ssh-agent version to 6.12.0-jdk21 (#1142) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 30c9b74c..bea778c8 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -63,7 +63,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.12.0 + image: jenkins/ssh-agent:6.12.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 401549c8..5c92ed17 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -111,7 +111,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.12.0 + image: jenkins/ssh-agent:6.12.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default From b1ef21102c583b73b8555e8bf727442e429e13f9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Apr 2025 11:18:59 +0200 Subject: [PATCH 209/235] Update Jenkins Weekly versions to 2.506-jdk21 in the controller Dockerfile (#1143) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... ... s/Dockerfile Made with ❤️️ by updatecli * Remove jdk21 from Jenkins base image --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 29e19ee5..7652749f 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,10 +1,10 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.505-jdk21 +ARG JENKINS_VERSION=2.506-jdk21 # We then use the official Jenkins image with the specified version as our base image. -FROM jenkins/jenkins:"${JENKINS_VERSION}"-jdk21 +FROM jenkins/jenkins:"${JENKINS_VERSION}" # We switch to the root user to have the necessary permissions for the upcoming operations. USER root From e32d34762eab06acc653001365b1422cc8bbb0d4 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 21 Apr 2025 14:49:24 +0200 Subject: [PATCH 210/235] chore(jenkins): Update Jenkins plugins (#1148) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index d1065e43..0f4b2158 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -1,7 +1,7 @@ ant:513.vde9e7b_a_0da_0f antisamy-markup-formatter:173.v680e3a_b_69ff3 apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 -bootstrap5-api:5.3.3-3 +bootstrap5-api:5.3.5-1 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1217.v43d8b_b_d8b_2c7 build-timeout:1.38 @@ -10,7 +10,7 @@ checks-api:367.v18b_7f530e54a_ cloudbees-folder:6.1012.v79a_86a_1ea_c1f commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 -configuration-as-code:1953.v148f87d74b_1e +configuration-as-code:1958.vddc0d369b_e16 coverage:2.4.0 credentials-binding:687.v619cb_15e923f credentials:1415.v831096eb_5534 @@ -45,7 +45,7 @@ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 pipeline-graph-analysis:235.vb_a_a_36b_f248c2 -pipeline-graph-view:435.vcfcb_fb_d4ef85 +pipeline-graph-view:439.v5dcb_592df4e8 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:127.vb_52887ca_3b_6d From 3efa1278d14c6987a8af8c2da321951e4dd7343d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Apr 2025 14:51:08 +0200 Subject: [PATCH 211/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1149) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index d1f93cfe..dd331f80 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-04-14-12-26-26 +FROM gitpod/workspace-full:2025-04-16-08-49-20 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 3c50349bb9f0b0275d12cfdd22e47d12f3c399a5 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 23 Apr 2025 18:24:51 +0200 Subject: [PATCH 212/235] chore(jenkins): Update Jenkins plugins (#1154) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 0f4b2158..82eb76b3 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -6,7 +6,7 @@ bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ branch-api:2.1217.v43d8b_b_d8b_2c7 build-timeout:1.38 caffeine-api:3.2.0-166.v72a_6d74b_870f -checks-api:367.v18b_7f530e54a_ +checks-api:370.vb_61a_c57328f3 cloudbees-folder:6.1012.v79a_86a_1ea_c1f commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 @@ -39,13 +39,13 @@ locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.6 matrix-project:847.v88a_f90ff9f20 -metrics:4.2.30-468.v5973151f8cfc +metrics:4.2.30-471.v55fa_495f2b_f5 mina-sshd-api-common:2.15.0-161.vb_200831a_c15b_ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 pipeline-graph-analysis:235.vb_a_a_36b_f248c2 -pipeline-graph-view:439.v5dcb_592df4e8 +pipeline-graph-view:448.vdeeb_b_c328b_c2 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:127.vb_52887ca_3b_6d @@ -73,7 +73,7 @@ variant:70.va_d9f17f859e0 workflow-aggregator:608.v67378e9d3db_1 workflow-api:1371.ve334280b_d611 workflow-basic-steps:1079.vce64b_a_929c5a_ -workflow-cps:4080.va_15b_44a_91525 +workflow-cps:4106.v7a_8a_8176d450 workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1520.v56d65e3b_4566 workflow-multibranch:806.vb_b_688f609ee9 From 0adba2a8bd22a7c3ffbec1907bdc293537ffe538 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 23 Apr 2025 18:26:33 +0200 Subject: [PATCH 213/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1155) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 7652749f..35e6abe5 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.506-jdk21 +ARG JENKINS_VERSION=2.507-jdk21 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 73e3e0b0e6d42bc12abf7bfdc855134363a47119 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 23 Apr 2025 18:27:44 +0200 Subject: [PATCH 214/235] Bump ssh-agent version to 6.14.0-jdk21 (#1157) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/cpp/... ... Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/cpp/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index bea778c8..41b4b140 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -63,7 +63,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.12.0-jdk21 + image: jenkins/ssh-agent:6.14.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 5c92ed17..0b6cb07b 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -111,7 +111,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.12.0-jdk21 + image: jenkins/ssh-agent:6.14.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 62411242..f44ac955 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile index 4df3630d..ed025178 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0-jdk21 +FROM jenkins/ssh-agent:6.14.0-jdk21 # Install necessary C++ build tools RUN apt-get update && apt-get install -y --no-install-recommends \ diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 01899258..398061e9 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index b8cb48c7..cd8fa3a7 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 847acdf5..67e2fc36 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 2c3830f2..14ad2aee 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 66dbeff6..59a7f428 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.12.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 79458938a05d5806aa71d5d9b86926a37bc8f1ea Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 25 Apr 2025 17:33:11 +0200 Subject: [PATCH 215/235] chore(jenkins): Update Jenkins plugins (#1160) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 82eb76b3..96a7a73e 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -38,14 +38,14 @@ junit:1322.v1556dc1c59a_f locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.6 -matrix-project:847.v88a_f90ff9f20 +matrix-project:849.v0cd64ed7e531 metrics:4.2.30-471.v55fa_495f2b_f5 mina-sshd-api-common:2.15.0-161.vb_200831a_c15b_ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 pipeline-graph-analysis:235.vb_a_a_36b_f248c2 -pipeline-graph-view:448.vdeeb_b_c328b_c2 +pipeline-graph-view:458.vda_20b_9b_63f10 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:127.vb_52887ca_3b_6d From d9fe60633095c281d4afa05dc6f4f94eeb9c0038 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 29 Apr 2025 13:45:49 +0200 Subject: [PATCH 216/235] chore: deps(dockerfile): bump image "debian" (#1172) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 5d8c0ff4..194605ce 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20250407 as prepare-stage +FROM debian:bookworm-20250428 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From 1deffbe7a1652799406e1cc2bfd02d5f13dd236f Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 2 May 2025 10:20:47 +0200 Subject: [PATCH 217/235] chore(jenkins): Update Jenkins plugins (#1178) --- dockerfiles/plugins.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 96a7a73e..76faa261 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,13 +10,13 @@ checks-api:370.vb_61a_c57328f3 cloudbees-folder:6.1012.v79a_86a_1ea_c1f commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 -configuration-as-code:1958.vddc0d369b_e16 -coverage:2.4.0 +configuration-as-code:1963.v24e046127a_3f +coverage:2.5.0 credentials-binding:687.v619cb_15e923f credentials:1415.v831096eb_5534 display-url-api:2.209.v582ed814ff2f durable-task:587.v84b_877235b_45 -echarts-api:5.6.0-3 +echarts-api:5.6.0-4 font-awesome-api:6.7.2-1 git-client:6.1.3 git:5.7.0 @@ -45,17 +45,17 @@ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 pipeline-graph-analysis:235.vb_a_a_36b_f248c2 -pipeline-graph-view:458.vda_20b_9b_63f10 +pipeline-graph-view:497.vb_0b_8093c4e93 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:127.vb_52887ca_3b_6d -pipeline-model-api:2.2254.v2a_978de46f35 -pipeline-model-definition:2.2254.v2a_978de46f35 -pipeline-model-extensions:2.2254.v2a_978de46f35 -pipeline-rest-api:2.37 +pipeline-model-api:2.2255.v56a_15e805f12 +pipeline-model-definition:2.2255.v56a_15e805f12 +pipeline-model-extensions:2.2255.v56a_15e805f12 +pipeline-rest-api:2.38 pipeline-stage-step:322.vecffa_99f371c -pipeline-stage-tags-metadata:2.2254.v2a_978de46f35 -pipeline-stage-view:2.37 +pipeline-stage-tags-metadata:2.2255.v56a_15e805f12 +pipeline-stage-view:2.38 plain-credentials:195.vb_906e9073dee plugin-util-api:6.1.0 resource-disposer:0.25 From e6588d72f7c0544e7e6edbac2ba3270a013d49ac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 2 May 2025 10:22:05 +0200 Subject: [PATCH 218/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1179) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 35e6abe5..c414719a 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.507-jdk21 +ARG JENKINS_VERSION=2.508-jdk21 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From cc98dc0463dc25d6d95c58c140f0ddd6b66f0b22 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 9 May 2025 10:19:24 +0200 Subject: [PATCH 219/235] chore(jenkins): Update Jenkins plugins (#1202) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 76faa261..3d714b14 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ checks-api:370.vb_61a_c57328f3 cloudbees-folder:6.1012.v79a_86a_1ea_c1f commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 -configuration-as-code:1963.v24e046127a_3f +configuration-as-code:1967.va_968e15fd05b_ coverage:2.5.0 credentials-binding:687.v619cb_15e923f credentials:1415.v831096eb_5534 @@ -25,7 +25,7 @@ github-branch-source:1815.v9152b_2ff7a_1b_ github:1.43.0 gradle:2.14.1 instance-identity:203.v15e81a_1b_7a_38 -ionicons-api:82.v0597178874e1 +ionicons-api:88.va_4187cb_eddf1 jackson2-api:2.18.3-402.v74c4eb_f122b_2 jakarta-activation-api:2.1.3-2 jakarta-mail-api:2.1.3-2 @@ -45,10 +45,10 @@ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 pipeline-graph-analysis:235.vb_a_a_36b_f248c2 -pipeline-graph-view:497.vb_0b_8093c4e93 +pipeline-graph-view:516.vd1d03f6c4a_99 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c -pipeline-milestone-step:127.vb_52887ca_3b_6d +pipeline-milestone-step:134.vdf60d179845f pipeline-model-api:2.2255.v56a_15e805f12 pipeline-model-definition:2.2255.v56a_15e805f12 pipeline-model-extensions:2.2255.v56a_15e805f12 From be7ab6aa1f8d2a2d7fd88ea36d728aa9f1045737 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 May 2025 10:21:28 +0200 Subject: [PATCH 220/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1206) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index c414719a..36b12e9a 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.508-jdk21 +ARG JENKINS_VERSION=2.509-jdk21 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 5ad62b4512b52986edce290d2f888679e942ac85 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 May 2025 10:22:02 +0200 Subject: [PATCH 221/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1204) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index dd331f80..7633b0b3 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-04-16-08-49-20 +FROM gitpod/workspace-full:2025-05-07-19-17-45 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 2f2c7064b2408d5cd988979757c8ee7e68541bff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 May 2025 10:22:50 +0200 Subject: [PATCH 222/235] chore: deps(dockerfile): bump golang version (#1205) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 398061e9..940f3a34 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates rm -rf /var/lib/apt/lists/* # Now time to install golang -ARG GOLANG_VERSION=1.24.2 +ARG GOLANG_VERSION=1.24.3 ARG TARGETARCH ENV ARCHITECTURE=$TARGETARCH From 57c37255a03306520a2bedfa1368757fe214370e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 May 2025 10:23:29 +0200 Subject: [PATCH 223/235] Bump ssh-agent version to 6.15.0-jdk21 (#1207) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/cpp/... ... Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/cpp/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 41b4b140..11f4c3ac 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -63,7 +63,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.14.0-jdk21 + image: jenkins/ssh-agent:6.15.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index 0b6cb07b..ebccfe72 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -111,7 +111,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.14.0-jdk21 + image: jenkins/ssh-agent:6.15.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index f44ac955..9e1635ea 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile index ed025178..886bf0e5 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.14.0-jdk21 +FROM jenkins/ssh-agent:6.15.0-jdk21 # Install necessary C++ build tools RUN apt-get update && apt-get install -y --no-install-recommends \ diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 940f3a34..3088434d 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index cd8fa3a7..b07bc49f 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index 67e2fc36..e98464f6 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 14ad2aee..25a8e127 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 59a7f428..4db25609 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.14.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 075e0bfa0fa18686bfa8538430214f3f8d4da31c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 May 2025 11:00:08 +0200 Subject: [PATCH 224/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1215) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 7633b0b3..6afb6112 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-05-07-19-17-45 +FROM gitpod/workspace-full:2025-05-09-11-18-24 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 9ddc0527656e691e5073049b5e35e01fdb1b1e48 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 12 May 2025 11:00:27 +0200 Subject: [PATCH 225/235] Bump ssh-agent version to 6.16.0-jdk21 (#1216) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/cpp/... ... Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/cpp/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 11f4c3ac..82c2d43d 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -63,7 +63,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.15.0-jdk21 + image: jenkins/ssh-agent:6.16.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index ebccfe72..bff74b64 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -111,7 +111,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.15.0-jdk21 + image: jenkins/ssh-agent:6.16.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 9e1635ea..75f6be93 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile index 886bf0e5..b16828cc 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.15.0-jdk21 +FROM jenkins/ssh-agent:6.16.0-jdk21 # Install necessary C++ build tools RUN apt-get update && apt-get install -y --no-install-recommends \ diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 3088434d..02b41611 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index b07bc49f..5fb97ce5 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index e98464f6..a4d1511b 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index 25a8e127..bb8ad3af 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 4db25609..455f44b5 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.15.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 42a0ebb375c1fa10b05da6f27b42d3ecfff29843 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 14 May 2025 21:49:33 +0200 Subject: [PATCH 226/235] chore(jenkins): Update Jenkins plugins (#1223) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 3d714b14..8ccf362d 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -23,7 +23,7 @@ git:5.7.0 github-api:1.321-488.v9b_c0da_9533f8 github-branch-source:1815.v9152b_2ff7a_1b_ github:1.43.0 -gradle:2.14.1 +gradle:2.15 instance-identity:203.v15e81a_1b_7a_38 ionicons-api:88.va_4187cb_eddf1 jackson2-api:2.18.3-402.v74c4eb_f122b_2 @@ -34,7 +34,7 @@ javax-mail-api:1.6.2-11 jaxb:2.3.9-133.vb_ec76a_73f706 jjwt-api:0.11.5-120.v0268cf544b_89 jquery3-api:3.7.1-3 -junit:1322.v1556dc1c59a_f +junit:1335.v6b_a_a_e18534e1 locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.6 @@ -44,8 +44,8 @@ mina-sshd-api-common:2.15.0-161.vb_200831a_c15b_ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 -pipeline-graph-analysis:235.vb_a_a_36b_f248c2 -pipeline-graph-view:516.vd1d03f6c4a_99 +pipeline-graph-analysis:237.v2b_75640ca_888 +pipeline-graph-view:521.v799963fd568a_ pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:134.vdf60d179845f @@ -71,7 +71,7 @@ token-macro:444.v52de7e9c573d trilead-api:2.209.v0e69b_c43c245 variant:70.va_d9f17f859e0 workflow-aggregator:608.v67378e9d3db_1 -workflow-api:1371.ve334280b_d611 +workflow-api:1373.v7b_813f10efa_b_ workflow-basic-steps:1079.vce64b_a_929c5a_ workflow-cps:4106.v7a_8a_8176d450 workflow-durable-task-step:1405.v1fcd4a_d00096 From 31587658d6040d25050bdcc167a1eedc10c7589b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 May 2025 21:55:03 +0200 Subject: [PATCH 227/235] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1225) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- .gitpod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitpod/Dockerfile b/.gitpod/Dockerfile index 6afb6112..391e0c50 100644 --- a/.gitpod/Dockerfile +++ b/.gitpod/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Gitpod workspace with GitHub CLI installed. # We start from the Gitpod full workspace image which includes a broad range of development tools. -FROM gitpod/workspace-full:2025-05-09-11-18-24 +FROM gitpod/workspace-full:2025-05-14-07-50-25 # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From 6fdf9d288505cf3d3740019571771d20586ea70b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 14 May 2025 21:55:49 +0200 Subject: [PATCH 228/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1226) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 36b12e9a..aab289df 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.509-jdk21 +ARG JENKINS_VERSION=2.510-jdk21 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 96801533c73d3c81a1625f89ed529c2316f97767 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 20 May 2025 10:40:51 +0200 Subject: [PATCH 229/235] chore(jenkins): Update Jenkins plugins (#1233) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 8ccf362d..55904d96 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -2,14 +2,14 @@ ant:513.vde9e7b_a_0da_0f antisamy-markup-formatter:173.v680e3a_b_69ff3 apache-httpcomponents-client-4-api:4.5.14-269.vfa_2321039a_83 bootstrap5-api:5.3.5-1 -bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ +bouncycastle-api:2.30.1.80-261.v00c0e2618ec3 branch-api:2.1217.v43d8b_b_d8b_2c7 build-timeout:1.38 caffeine-api:3.2.0-166.v72a_6d74b_870f checks-api:370.vb_61a_c57328f3 cloudbees-folder:6.1012.v79a_86a_1ea_c1f commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ -commons-text-api:1.13.0-153.v91dcd89e2a_22 +commons-text-api:1.13.1-176.v74d88f22034b_ configuration-as-code:1967.va_968e15fd05b_ coverage:2.5.0 credentials-binding:687.v619cb_15e923f @@ -45,10 +45,10 @@ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 pipeline-graph-analysis:237.v2b_75640ca_888 -pipeline-graph-view:521.v799963fd568a_ +pipeline-graph-view:533.v1610543dc627 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c -pipeline-milestone-step:134.vdf60d179845f +pipeline-milestone-step:138.v78ca_76831a_43 pipeline-model-api:2.2255.v56a_15e805f12 pipeline-model-definition:2.2255.v56a_15e805f12 pipeline-model-extensions:2.2255.v56a_15e805f12 @@ -66,7 +66,7 @@ ssh-credentials:355.v9b_e5b_cde5003 ssh-slaves:3.1031.v72c6b_883b_869 sshd:3.353.v2b_d33c46e970 structs:343.vdcf37b_a_c81d5 -timestamper:1.28 +timestamper:1.29 token-macro:444.v52de7e9c573d trilead-api:2.209.v0e69b_c43c245 variant:70.va_d9f17f859e0 From 915f96b71dc8030352c2e0cb921205350aa1c6a7 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 26 May 2025 10:22:24 +0200 Subject: [PATCH 230/235] chore(jenkins): Update Jenkins plugins (#1243) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 55904d96..adbcc6bc 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -11,7 +11,7 @@ cloudbees-folder:6.1012.v79a_86a_1ea_c1f commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.1-176.v74d88f22034b_ configuration-as-code:1967.va_968e15fd05b_ -coverage:2.5.0 +coverage:2.6.0 credentials-binding:687.v619cb_15e923f credentials:1415.v831096eb_5534 display-url-api:2.209.v582ed814ff2f @@ -26,7 +26,7 @@ github:1.43.0 gradle:2.15 instance-identity:203.v15e81a_1b_7a_38 ionicons-api:88.va_4187cb_eddf1 -jackson2-api:2.18.3-402.v74c4eb_f122b_2 +jackson2-api:2.19.0-404.vb_b_0fd2fea_e10 jakarta-activation-api:2.1.3-2 jakarta-mail-api:2.1.3-2 javax-activation-api:1.2.0-8 @@ -35,7 +35,7 @@ jaxb:2.3.9-133.vb_ec76a_73f706 jjwt-api:0.11.5-120.v0268cf544b_89 jquery3-api:3.7.1-3 junit:1335.v6b_a_a_e18534e1 -locale:566.v3323643741cc +locale:585.va_126c410a_def mailer:489.vd4b_25144138f matrix-auth:3.2.6 matrix-project:849.v0cd64ed7e531 @@ -45,7 +45,7 @@ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 pipeline-graph-analysis:237.v2b_75640ca_888 -pipeline-graph-view:533.v1610543dc627 +pipeline-graph-view:538.v647ee88449dd pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:138.v78ca_76831a_43 From cd39289e3613c357249df8518ed0ec8497a08cc8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 May 2025 10:28:49 +0200 Subject: [PATCH 231/235] chore: deps(dockerfile): bump image "debian" (#1245) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> --- dockerfiles/sidekick/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/sidekick/Dockerfile b/dockerfiles/sidekick/Dockerfile index 194605ce..8f01baff 100644 --- a/dockerfiles/sidekick/Dockerfile +++ b/dockerfiles/sidekick/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed. # We start from the Debian 'bookworm' image dated 2023-11-20. -FROM debian:bookworm-20250428 as prepare-stage +FROM debian:bookworm-20250520 as prepare-stage # Copy all shell scripts from the current directory to /usr/local/bin/ in the image. COPY *sh /usr/local/bin/ From f668c5e8e0fbf5c4fa424cf84e6bb4fb90e649d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 May 2025 10:29:12 +0200 Subject: [PATCH 232/235] chore: [jenkins-controller] Bump Jenkins Weekly version in dockerfile... (#1246) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... s/Dockerfile Made with ❤️️ by updatecli Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- dockerfiles/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index aab289df..a5cde439 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings. # We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use. -ARG JENKINS_VERSION=2.510-jdk21 +ARG JENKINS_VERSION=2.511-jdk21 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 8fc1de528514ca2a9310b7989e80ec237f01499a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 26 May 2025 10:29:39 +0200 Subject: [PATCH 233/235] Bump ssh-agent version to 6.17.0-jdk21 (#1247) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/cpp/... ... Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Bruno Verachten --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/cpp/Dockerfile | 2 +- dockerfiles/golang/Dockerfile | 2 +- dockerfiles/maven/Dockerfile | 2 +- dockerfiles/multi/Dockerfile | 2 +- dockerfiles/node/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 82c2d43d..1eb8b03b 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -63,7 +63,7 @@ services: timeout: 10s retries: 5 default_agent: - image: jenkins/ssh-agent:6.16.0-jdk21 + image: jenkins/ssh-agent:6.17.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/docker-compose.yaml b/docker-compose.yaml index bff74b64..21635950 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -111,7 +111,7 @@ services: # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory. # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host. default_agent: - image: jenkins/ssh-agent:6.16.0-jdk21 + image: jenkins/ssh-agent:6.17.0-jdk21 container_name: desktop-jenkins_agent-1 profiles: - default diff --git a/dockerfiles/android/Dockerfile b/dockerfiles/android/Dockerfile index 75f6be93..7e8b28da 100644 --- a/dockerfiles/android/Dockerfile +++ b/dockerfiles/android/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.17.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip diff --git a/dockerfiles/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile index b16828cc..9784b9bc 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.16.0-jdk21 +FROM jenkins/ssh-agent:6.17.0-jdk21 # Install necessary C++ build tools RUN apt-get update && apt-get install -y --no-install-recommends \ diff --git a/dockerfiles/golang/Dockerfile b/dockerfiles/golang/Dockerfile index 02b41611..c6ef8b20 100644 --- a/dockerfiles/golang/Dockerfile +++ b/dockerfiles/golang/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.17.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/maven/Dockerfile b/dockerfiles/maven/Dockerfile index 5fb97ce5..db03fca8 100644 --- a/dockerfiles/maven/Dockerfile +++ b/dockerfiles/maven/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.17.0-jdk21 as ssh-agent # ca-certificates because curl uses certificates from ca-certificates RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \ diff --git a/dockerfiles/multi/Dockerfile b/dockerfiles/multi/Dockerfile index a4d1511b..5bd19cee 100644 --- a/dockerfiles/multi/Dockerfile +++ b/dockerfiles/multi/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.17.0-jdk21 as ssh-agent ARG NODE_MAJOR=20 diff --git a/dockerfiles/node/Dockerfile b/dockerfiles/node/Dockerfile index bb8ad3af..3fe9094a 100644 --- a/dockerfiles/node/Dockerfile +++ b/dockerfiles/node/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.17.0-jdk21 as ssh-agent ARG NODE_MAJOR=22 # ca-certificates because curl uses certificates from ca-certificates diff --git a/dockerfiles/python/Dockerfile b/dockerfiles/python/Dockerfile index 455f44b5..27e0086f 100644 --- a/dockerfiles/python/Dockerfile +++ b/dockerfiles/python/Dockerfile @@ -1,7 +1,7 @@ # This Dockerfile is used to create a Jenkins SSH agent with Python and several Python packages installed in order to run the python sample tutorial. # We start from the Jenkins SSH agent image version 5.20.0. -FROM jenkins/ssh-agent:6.16.0-jdk21 as ssh-agent +FROM jenkins/ssh-agent:6.17.0-jdk21 as ssh-agent # The RUN command executes a series of commands in the new layer of the image and commits the results. # The following commands are executed: From d5f986a482715c639d4d2ccece1d9b844b80c665 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 2 Jun 2025 10:36:43 +0200 Subject: [PATCH 234/235] chore(jenkins): Update Jenkins plugins (#1269) --- dockerfiles/plugins.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index adbcc6bc..11d6c65c 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,10 +7,10 @@ branch-api:2.1217.v43d8b_b_d8b_2c7 build-timeout:1.38 caffeine-api:3.2.0-166.v72a_6d74b_870f checks-api:370.vb_61a_c57328f3 -cloudbees-folder:6.1012.v79a_86a_1ea_c1f +cloudbees-folder:6.1023.v4fcb_72152519 commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.1-176.v74d88f22034b_ -configuration-as-code:1967.va_968e15fd05b_ +configuration-as-code:1971.vf9280461ea_89 coverage:2.6.0 credentials-binding:687.v619cb_15e923f credentials:1415.v831096eb_5534 @@ -21,7 +21,7 @@ font-awesome-api:6.7.2-1 git-client:6.1.3 git:5.7.0 github-api:1.321-488.v9b_c0da_9533f8 -github-branch-source:1815.v9152b_2ff7a_1b_ +github-branch-source:1822.v9eec8e5e69e3 github:1.43.0 gradle:2.15 instance-identity:203.v15e81a_1b_7a_38 @@ -35,19 +35,19 @@ jaxb:2.3.9-133.vb_ec76a_73f706 jjwt-api:0.11.5-120.v0268cf544b_89 jquery3-api:3.7.1-3 junit:1335.v6b_a_a_e18534e1 -locale:585.va_126c410a_def +locale:587.v7b_843928a_719 mailer:489.vd4b_25144138f matrix-auth:3.2.6 matrix-project:849.v0cd64ed7e531 -metrics:4.2.30-471.v55fa_495f2b_f5 +metrics:4.2.32-476.v5042e1c1edd7 mina-sshd-api-common:2.15.0-161.vb_200831a_c15b_ mina-sshd-api-core:2.15.0-161.vb_200831a_c15b_ okhttp-api:4.11.0-189.v976fa_d3379d6 pipeline-build-step:567.vea_ce550ece97 -pipeline-graph-analysis:237.v2b_75640ca_888 -pipeline-graph-view:538.v647ee88449dd +pipeline-graph-analysis:241.vc3d48fb_b_2582 +pipeline-graph-view:551.vde72dc246b_c4 pipeline-groovy-lib:752.vdddedf804e72 -pipeline-input-step:517.vf8e782ee645c +pipeline-input-step:527.vd61b_1d3c5078 pipeline-milestone-step:138.v78ca_76831a_43 pipeline-model-api:2.2255.v56a_15e805f12 pipeline-model-definition:2.2255.v56a_15e805f12 @@ -65,7 +65,7 @@ snakeyaml-api:2.3-125.v4d77857a_b_402 ssh-credentials:355.v9b_e5b_cde5003 ssh-slaves:3.1031.v72c6b_883b_869 sshd:3.353.v2b_d33c46e970 -structs:343.vdcf37b_a_c81d5 +structs:350.v3b_30f09f2363 timestamper:1.29 token-macro:444.v52de7e9c573d trilead-api:2.209.v0e69b_c43c245 @@ -75,7 +75,7 @@ workflow-api:1373.v7b_813f10efa_b_ workflow-basic-steps:1079.vce64b_a_929c5a_ workflow-cps:4106.v7a_8a_8176d450 workflow-durable-task-step:1405.v1fcd4a_d00096 -workflow-job:1520.v56d65e3b_4566 +workflow-job:1532.va_9a_d244074a_3 workflow-multibranch:806.vb_b_688f609ee9 workflow-scm-step:437.v05a_f66b_e5ef8 workflow-step-api:700.v6e45cb_a_5a_a_21 From 7e6286a5922303e7035f4522b2ea3325ab45b485 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 2 Jun 2025 08:36:53 +0000 Subject: [PATCH 235/235] Update Docker versions --- docker-versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-versions.txt b/docker-versions.txt index ce2a23d2..708e6678 100644 --- a/docker-versions.txt +++ b/docker-versions.txt @@ -1,2 +1,2 @@ -- Docker version 26.1.3, build b72abbb -- Docker Compose version v2.27.1 +- Docker version 28.0.4, build b8034c0 +- Docker Compose version v2.36.0