From bdd4d45d2c45477cdf36e3638b3ff41cc2522149 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 18 Jul 2024 09:36:07 +0200 Subject: [PATCH 001/333] chore(jenkins): Update Jenkins plugins (#452) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 0807ee8f..77b67153 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -20,7 +20,7 @@ font-awesome-api:6.5.2-1 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-branch-source:1790.v5a_7859812c8d github:1.39.0 gradle:2.12 instance-identity:185.v303dc7c645f9 From 104d44676a2d9ce941f1b195a67309764015838f Mon Sep 17 00:00:00 2001 From: gounthar Date: Fri, 19 Jul 2024 11:44:11 +0200 Subject: [PATCH 002/333] fix(docker): Uses override to allow for changes to yaml or plugins.txt to be taken into account. --- dockerfiles/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index adac89f9..b2995c66 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 6c4319b35caa71cf95e0c092106df67f14c19ffe Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 19 Jul 2024 11:45:33 +0200 Subject: [PATCH 003/333] chore(jenkins): Update Jenkins plugins (#458) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 77b67153..160414e8 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ 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 +configuration-as-code:1836.vccda_4a_122a_a_e credentials-binding:681.vf91669a_32e45 credentials:1371.vfee6b_095f0a_3 display-url-api:2.204.vf6fddd8a_8b_e9 @@ -70,7 +70,7 @@ 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:1322.v857eeeea_9902 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3908.vd6b_b_5a_a_54010 workflow-durable-task-step:1360.v82d13453da_a_f From 7b99d6828331fcb6c509d60907b3176714857b3e Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 24 Jul 2024 21:18:42 +0200 Subject: [PATCH 004/333] chore(jenkins): Update Jenkins plugins (#473) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 160414e8..b35fd377 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -61,7 +61,7 @@ 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 +ssh-credentials:341.vf31377f30378 ssh-slaves:2.973.v0fa_8c0dea_f9f sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 From dd5e00b665d54925941e67b7724cc371acf882a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 21:20:43 +0200 Subject: [PATCH 005/333] chore: deps(dockerfile): bump image "debian" (#474) 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 3bd6b562234118e92f2985c8c1e948babe16946b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 24 Jul 2024 21:21:13 +0200 Subject: [PATCH 006/333] chore(jenkins): Update Jenkins plugins (#475) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index b35fd377..4e608686 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:1265.v65b_14fa_f12f0 +junit:1279.v72cf99b_25c43 locale:519.v4e20f313cfa_f mailer:472.vf7c289a_4b_420 matrix-auth:3.2.2 From f5d89de6ed9ff9d69228537c8d647c1fa985c0c1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 25 Jul 2024 10:28:53 +0200 Subject: [PATCH 007/333] chore(jenkins): Update Jenkins plugins (#477) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 4e608686..68a62df3 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -61,7 +61,7 @@ resource-disposer:0.23 scm-api:690.vfc8b_54395023 script-security:1341.va_2819b_414686 snakeyaml-api:2.2-111.vc6598e30cc65 -ssh-credentials:341.vf31377f30378 +ssh-credentials:342.ve5a_f1db_5a_132 ssh-slaves:2.973.v0fa_8c0dea_f9f sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 From f2d0745a118ec8a4a7947179941d2355d7e5bea3 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 26 Jul 2024 15:41:28 +0200 Subject: [PATCH 008/333] chore(jenkins): Update Jenkins plugins (#479) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 68a62df3..ede09ac8 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.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 @@ -61,7 +61,7 @@ resource-disposer:0.23 scm-api:690.vfc8b_54395023 script-security:1341.va_2819b_414686 snakeyaml-api:2.2-111.vc6598e30cc65 -ssh-credentials:342.ve5a_f1db_5a_132 +ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 From 558c5f838f32f92903d771cbb08005c42e887cfe 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:55 +0200 Subject: [PATCH 009/333] Bump ssh-agent version to 5.45.0 (#481) 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 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 d1b19acaf1d3b01540f8df3a165b5f8966df2875 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 27 Jul 2024 11:59:25 +0200 Subject: [PATCH 010/333] chore(jenkins): Update Jenkins plugins (#487) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index ede09ac8..ab3f5627 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -19,7 +19,7 @@ echarts-api:5.5.0-1 font-awesome-api:6.5.2-1 git-client:5.0.0 git:5.2.2 -github-api:1.318-461.v7a_c09c9fa_d63 +github-api:1.321-468.v6a_9f5f2d5a_7e github-branch-source:1790.v5a_7859812c8d github:1.39.0 gradle:2.12 @@ -58,7 +58,7 @@ 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 +scm-api:696.v778d637b_a_762 script-security:1341.va_2819b_414686 snakeyaml-api:2.2-111.vc6598e30cc65 ssh-credentials:343.v884f71d78167 From b33128d494a89d09c7944012a3f10eb03614780a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Jul 2024 07:47:51 +0200 Subject: [PATCH 011/333] chore(deps): bump updatecli/updatecli-action from 2.62.0 to 2.64.0 (#488) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.62.0 to 2.64.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.62.0...v2.64.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> --- .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..191dc466 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.64.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From c9b7eff8ba08c6e061d9ed610bedaea5ca5249e3 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 30 Jul 2024 20:29:45 +0200 Subject: [PATCH 012/333] chore(jenkins): Update Jenkins plugins (#489) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index ab3f5627..be12fc06 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:1279.v72cf99b_25c43 +junit:1280.v310a_78b_9a_1e0 locale:519.v4e20f313cfa_f mailer:472.vf7c289a_4b_420 matrix-auth:3.2.2 From c9501e0c73096ccba0b4859b95e8f3a5a629257c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 1 Aug 2024 12:34:00 +0200 Subject: [PATCH 013/333] chore(jenkins): Update Jenkins plugins (#493) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index be12fc06..f6b523d8 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -20,7 +20,7 @@ font-awesome-api:6.5.2-1 git-client:5.0.0 git:5.2.2 github-api:1.321-468.v6a_9f5f2d5a_7e -github-branch-source:1790.v5a_7859812c8d +github-branch-source:1793.v1831e9c68d77 github:1.39.0 gradle:2.12 instance-identity:185.v303dc7c645f9 @@ -72,8 +72,8 @@ variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1322.v857eeeea_9902 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-cps:3922.va_f73b_7c4246b_ +workflow-durable-task-step:1364.v2fd76fb_6fd41 workflow-job:1400.v7fd111b_ec82f workflow-multibranch:783.787.v50539468395f workflow-scm-step:427.v4ca_6512e7df1 From 85b11b1f9d3abceb1d3cec46bee7244fa1ce3a44 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 2 Aug 2024 10:51:31 +0200 Subject: [PATCH 014/333] chore(jenkins): Update Jenkins plugins (#494) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index f6b523d8..cdb037bb 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -9,7 +9,7 @@ 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 +commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1836.vccda_4a_122a_a_e credentials-binding:681.vf91669a_32e45 credentials:1371.vfee6b_095f0a_3 From ceb61f5702ac4649d10a1c96d9c06d28350a9ac8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Aug 2024 08:33:28 +0200 Subject: [PATCH 015/333] chore(deps): bump updatecli/updatecli-action from 2.64.0 to 2.65.0 (#500) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.64.0 to 2.65.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.64.0...v2.65.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> --- .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 191dc466..8a542d70 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.64.0 + uses: updatecli/updatecli-action@v2.65.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From afd8cc34d37baa2203f5ce3db5f7ab63d2728848 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 10 Aug 2024 09:10:38 +0200 Subject: [PATCH 016/333] chore(jenkins): Update Jenkins plugins (#505) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index cdb037bb..f8b44816 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -1,4 +1,4 @@ -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 @@ -14,14 +14,14 @@ configuration-as-code:1836.vccda_4a_122a_a_e credentials-binding:681.vf91669a_32e45 credentials:1371.vfee6b_095f0a_3 display-url-api:2.204.vf6fddd8a_8b_e9 -durable-task:555.v6802fe0f0b_82 +durable-task:568.v8fb_5c57e8417 echarts-api:5.5.0-1 font-awesome-api:6.5.2-1 git-client:5.0.0 -git:5.2.2 +git:5.3.0 github-api:1.321-468.v6a_9f5f2d5a_7e github-branch-source:1793.v1831e9c68d77 -github:1.39.0 +github:1.40.0 gradle:2.12 instance-identity:185.v303dc7c645f9 ionicons-api:74.v93d5eb_813d5f @@ -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:1280.v310a_78b_9a_1e0 +junit:1284.vf75d778f98c5 locale:519.v4e20f313cfa_f mailer:472.vf7c289a_4b_420 matrix-auth:3.2.2 @@ -60,7 +60,7 @@ plugin-util-api:4.1.0 resource-disposer:0.23 scm-api:696.v778d637b_a_762 script-security:1341.va_2819b_414686 -snakeyaml-api:2.2-111.vc6598e30cc65 +snakeyaml-api:2.2-121.v5a_68b_9300b_d4 ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f sshd:3.330.vc866a_8389b_58 From 3aa9effd32a085bbecba27b2b3caedbc1b06b172 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:14:36 +0200 Subject: [PATCH 017/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#507) 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 d59ec13f9e6e3fd39502a4a69aa2afb7b577179b 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:15:05 +0200 Subject: [PATCH 018/333] chore: deps(dockerfile): bump golang version (#508) 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 5de92e7e3630968e704b0a02c1fd388b03602d4c 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:16:17 +0200 Subject: [PATCH 019/333] chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#510) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... ockerfile 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 b2995c66..627086a8 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.462.1 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 9e2f2bd85c2014d9e11048d3ef147b07cd46a334 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 10 Aug 2024 09:17:15 +0200 Subject: [PATCH 020/333] chore(jenkins): Update Jenkins plugins (#506) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index f8b44816..d836d32b 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -70,7 +70,7 @@ token-macro:400.v35420b_922dcb_ trilead-api:2.147.vb_73cc728a_32e variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 -workflow-api:1322.v857eeeea_9902 +workflow-api:1332.vc21122317a_8e workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3922.va_f73b_7c4246b_ workflow-durable-task-step:1364.v2fd76fb_6fd41 From a23a95acdedab4a67be5733e4b58ae8df872d9d3 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:22:21 +0200 Subject: [PATCH 021/333] Bump ssh-agent version to 5.46.0 (#512) 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 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 2382ef23140dd147f90c20ded63d9dd41b77df5b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 10 Aug 2024 09:26:26 +0200 Subject: [PATCH 022/333] chore(jenkins): Update Jenkins plugins (#520) From 3c0b266493fa46f1b4b88a3e9bd13d4074575d57 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 10 Aug 2024 13:32:13 +0200 Subject: [PATCH 023/333] chore(jenkins): Update Jenkins plugins (#532) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index d836d32b..e68f6f64 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.0 -cloudbees-folder:6.928.v7c780211d66e +cloudbees-folder:6.942.vb_43318a_156b_2 commons-lang3-api:3.14.0-76.vda_5591261cfe commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1836.vccda_4a_122a_a_e @@ -74,8 +74,8 @@ workflow-api:1332.vc21122317a_8e workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3922.va_f73b_7c4246b_ workflow-durable-task-step:1364.v2fd76fb_6fd41 -workflow-job:1400.v7fd111b_ec82f -workflow-multibranch:783.787.v50539468395f +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 badb0794570ff50299c7cef85d001923a2586802 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 15 Aug 2024 18:10:21 +0200 Subject: [PATCH 024/333] chore(jenkins): Update Jenkins plugins (#533) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index e68f6f64..1e65aa18 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -8,7 +8,7 @@ build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.0 cloudbees-folder:6.942.vb_43318a_156b_2 -commons-lang3-api:3.14.0-76.vda_5591261cfe +commons-lang3-api:3.16.0-82.ve2b_07d659d95 commons-text-api:1.12.0-129.v99a_50df237f7 configuration-as-code:1836.vccda_4a_122a_a_e credentials-binding:681.vf91669a_32e45 @@ -39,13 +39,13 @@ 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 +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-172.vda_da_1feeb_c6e 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-groovy-lib:730.ve57b_34648c63 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2205.vc9522a_9d5711 @@ -59,7 +59,7 @@ plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:4.1.0 resource-disposer:0.23 scm-api:696.v778d637b_a_762 -script-security:1341.va_2819b_414686 +script-security:1354.va_70a_fe478c7f snakeyaml-api:2.2-121.v5a_68b_9300b_d4 ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f @@ -70,7 +70,7 @@ token-macro:400.v35420b_922dcb_ trilead-api:2.147.vb_73cc728a_32e variant:60.v7290fc0eb_b_cd workflow-aggregator:600.vb_57cdd26fdd7 -workflow-api:1332.vc21122317a_8e +workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3922.va_f73b_7c4246b_ workflow-durable-task-step:1364.v2fd76fb_6fd41 From 561d2d21ccac4f3ce24c5753993c1bbba0abf9f9 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:11:31 +0200 Subject: [PATCH 025/333] chore: deps(dockerfile): bump image "debian" (#534) 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 f6d9e02ea30f9574de856128d14c4edf5fd08194 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:12:17 +0200 Subject: [PATCH 026/333] chore: deps(dockerfile): bump golang version (#535) 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 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 06775814b30775e28ed6733602b4247d37c411e0 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 18 Aug 2024 10:12:17 +0200 Subject: [PATCH 027/333] chore(jenkins): Update Jenkins plugins (#548) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1e65aa18..67296826 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:3922.va_f73b_7c4246b_ +workflow-cps:3943.v3519a_3260660 workflow-durable-task-step:1364.v2fd76fb_6fd41 workflow-job:1436.vfa_244484591f workflow-multibranch:795.ve0cb_1f45ca_9a_ From 6e251ca4adab0876fc02785da34799f147db7765 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 18 Aug 2024 10:12:55 +0200 Subject: [PATCH 028/333] chore(jenkins): Update Jenkins plugins (#549) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 67296826..7dafa0cf 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -15,8 +15,8 @@ credentials-binding:681.vf91669a_32e45 credentials:1371.vfee6b_095f0a_3 display-url-api:2.204.vf6fddd8a_8b_e9 durable-task:568.v8fb_5c57e8417 -echarts-api:5.5.0-1 -font-awesome-api:6.5.2-1 +echarts-api:5.5.1-1 +font-awesome-api:6.6.0-1 git-client:5.0.0 git:5.3.0 github-api:1.321-468.v6a_9f5f2d5a_7e From f9ef3f5ddba41390bfd3891c02ffa16984f0ed69 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:29:56 +0200 Subject: [PATCH 029/333] chore: [maven-agent] Bump maven version in dockerfiles/maven/Dockerfile (#550) 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 46b595548c9a567aec3d2b3b7e2b148eb6767c8b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Aug 2024 09:42:27 +0200 Subject: [PATCH 030/333] chore(deps): bump anchore/scan-action from 4.1.0 to 4.1.1 (#557) Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 4.1.0 to 4.1.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/d43cc1dfea6a99ed123bf8f3133f1797c9b44492...bc9adf64917dd9444d6cf4dd68620c34ca3a5f69) --- 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> --- .github/workflows/anchore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index b1d05a49..ed7790d6 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@bc9adf64917dd9444d6cf4dd68620c34ca3a5f69 id: scan with: path: "." From b2404c9e55362cef4bc03450282bb4915d37286d Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 20 Aug 2024 09:43:40 +0200 Subject: [PATCH 031/333] chore(jenkins): Update Jenkins plugins (#558) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 7dafa0cf..4796e655 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:1284.vf75d778f98c5 +junit:1291.v60776881903c locale:519.v4e20f313cfa_f mailer:472.vf7c289a_4b_420 matrix-auth:3.2.2 From 6fa90d6ee8c2a8b2d2edcdf66af7ef38c22067dd Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 21 Aug 2024 10:53:37 +0200 Subject: [PATCH 032/333] chore(jenkins): Update Jenkins plugins (#561) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 4796e655..055ecb29 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -20,9 +20,9 @@ font-awesome-api:6.6.0-1 git-client:5.0.0 git:5.3.0 github-api:1.321-468.v6a_9f5f2d5a_7e -github-branch-source:1793.v1831e9c68d77 +github-branch-source:1797.v86fdb_4d57d43 github:1.40.0 -gradle:2.12 +gradle:2.12.1 instance-identity:185.v303dc7c645f9 ionicons-api:74.v93d5eb_813d5f jackson2-api:2.17.0-379.v02de8ec9f64c From dc01b5d59676a305d22add86a64a05b36260aa96 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 23 Aug 2024 15:34:35 +0200 Subject: [PATCH 033/333] chore(jenkins): Update Jenkins plugins (#568) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 055ecb29..a6ffae7e 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:1291.v60776881903c +junit:1296.vb_f538b_c88630 locale:519.v4e20f313cfa_f mailer:472.vf7c289a_4b_420 matrix-auth:3.2.2 @@ -73,7 +73,7 @@ workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3943.v3519a_3260660 -workflow-durable-task-step:1364.v2fd76fb_6fd41 +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 From 4931bb7b57fe20ffc153339dd2252b58a6431912 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 26 Aug 2024 10:01:45 +0200 Subject: [PATCH 034/333] chore(jenkins): Update Jenkins plugins (#572) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index a6ffae7e..0ae94f92 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -18,7 +18,7 @@ durable-task:568.v8fb_5c57e8417 echarts-api:5.5.1-1 font-awesome-api:6.6.0-1 git-client:5.0.0 -git:5.3.0 +git:5.4.0 github-api:1.321-468.v6a_9f5f2d5a_7e github-branch-source:1797.v86fdb_4d57d43 github:1.40.0 From 92e11e8414c2403f370515b8d8d965dcde007337 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:46:01 +0200 Subject: [PATCH 035/333] chore(deps): bump anchore/scan-action from 4.1.1 to 4.1.2 (#573) Bumps [anchore/scan-action](https://github.com/anchore/scan-action) from 4.1.1 to 4.1.2. - [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/bc9adf64917dd9444d6cf4dd68620c34ca3a5f69...64a33b277ea7a1215a3c142735a1091341939ff5) --- 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> --- .github/workflows/anchore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index ed7790d6..7d568448 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@bc9adf64917dd9444d6cf4dd68620c34ca3a5f69 + uses: anchore/scan-action@64a33b277ea7a1215a3c142735a1091341939ff5 id: scan with: path: "." From 40342508b495debd605681adafe9d7b2d5ec97c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:47:05 +0200 Subject: [PATCH 036/333] chore(deps): bump updatecli/updatecli-action from 2.65.0 to 2.66.0 (#574) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.65.0 to 2.66.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.65.0...v2.66.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 --- .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 8a542d70..29c7ea33 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.65.0 + uses: updatecli/updatecli-action@v2.66.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From 0e9a88df725b2e6cacdc232088b9ec2b2e028d65 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 27 Aug 2024 10:47:44 +0200 Subject: [PATCH 037/333] chore(jenkins): Update Jenkins plugins (#575) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 0ae94f92..a662efe4 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ checks-api:2.2.0 cloudbees-folder:6.942.vb_43318a_156b_2 commons-lang3-api:3.16.0-82.ve2b_07d659d95 commons-text-api:1.12.0-129.v99a_50df237f7 -configuration-as-code:1836.vccda_4a_122a_a_e +configuration-as-code:1849.v3a_d20568000a_ credentials-binding:681.vf91669a_32e45 credentials:1371.vfee6b_095f0a_3 display-url-api:2.204.vf6fddd8a_8b_e9 @@ -18,7 +18,7 @@ durable-task:568.v8fb_5c57e8417 echarts-api:5.5.1-1 font-awesome-api:6.6.0-1 git-client:5.0.0 -git:5.4.0 +git:5.4.1 github-api:1.321-468.v6a_9f5f2d5a_7e github-branch-source:1797.v86fdb_4d57d43 github:1.40.0 @@ -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:3943.v3519a_3260660 +workflow-cps:3946.v7935cb_edb_f82 workflow-durable-task-step:1371.vb_7cec8f3b_95e workflow-job:1436.vfa_244484591f workflow-multibranch:795.ve0cb_1f45ca_9a_ From a8fe34ab7452947ba429a1772480f7b2bc645b6d Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 28 Aug 2024 10:46:22 +0200 Subject: [PATCH 038/333] chore(jenkins): Update Jenkins plugins (#578) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index a662efe4..1cc751d3 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ checks-api:2.2.0 cloudbees-folder:6.942.vb_43318a_156b_2 commons-lang3-api:3.16.0-82.ve2b_07d659d95 commons-text-api:1.12.0-129.v99a_50df237f7 -configuration-as-code:1849.v3a_d20568000a_ +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 @@ -48,12 +48,12 @@ pipeline-graph-view:313.v1322ce83d680 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 @@ -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:3946.v7935cb_edb_f82 +workflow-cps:3953.v19f11da_8d2fa_ workflow-durable-task-step:1371.vb_7cec8f3b_95e workflow-job:1436.vfa_244484591f workflow-multibranch:795.ve0cb_1f45ca_9a_ From dd9fd5c3d74ae1ee3072a6af6c3c550743aa8d80 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 1 Sep 2024 07:30:10 +0200 Subject: [PATCH 039/333] chore(jenkins): Update Jenkins plugins (#585) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1cc751d3..f67e5152 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -44,7 +44,7 @@ mina-sshd-api-core:2.13.2-125.v200281b_61d59 okhttp-api:4.11.0-172.vda_da_1feeb_c6e pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:313.v1322ce83d680 +pipeline-graph-view:332.vb_232ced67fa_9 pipeline-groovy-lib:730.ve57b_34648c63 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ From 12a62e70ab97e04dcf88706ff4d170ae37161ed4 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 3 Sep 2024 08:51:00 +0200 Subject: [PATCH 040/333] chore(jenkins): Update Jenkins plugins (#587) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index f67e5152..a274a9d5 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -8,7 +8,7 @@ build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 checks-api:2.2.0 cloudbees-folder:6.942.vb_43318a_156b_2 -commons-lang3-api:3.16.0-82.ve2b_07d659d95 +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 From 698cf0ca6c6d6e7870c3cb702c7101d4c08e1091 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 08:51:41 +0200 Subject: [PATCH 041/333] chore(deps): bump updatecli/updatecli-action from 2.66.0 to 2.67.0 (#588) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.66.0 to 2.67.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.66.0...v2.67.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 --- .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 29c7ea33..83e01163 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.66.0 + uses: updatecli/updatecli-action@v2.67.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From 58d124d89a6e56c84ba96ad45abfe4765312ad3a Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 4 Sep 2024 15:16:46 +0200 Subject: [PATCH 042/333] chore(jenkins): Update Jenkins plugins (#589) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index a274a9d5..19eb02c6 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -59,8 +59,8 @@ plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:4.1.0 resource-disposer:0.23 scm-api:696.v778d637b_a_762 -script-security:1354.va_70a_fe478c7f -snakeyaml-api:2.2-121.v5a_68b_9300b_d4 +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 From eff4d069d398f8b4daaa801359e1e8d67accda92 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 15:31:03 +0200 Subject: [PATCH 043/333] chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#590) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... ockerfile 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 627086a8..ed970dc6 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.462.1 +ARG JENKINS_VERSION=2.462.2 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From f486bec34f1cc2ab664733d038966ca3b86da73b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 5 Sep 2024 14:57:54 +0200 Subject: [PATCH 044/333] chore(jenkins): Update Jenkins plugins (#591) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 19eb02c6..eb213c2f 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -6,7 +6,7 @@ bouncycastle-api:2.30.1.78.1-248.ve27176eb_46cb_ branch-api:2.1178.v969d9eb_c728e build-timeout:1.33 caffeine-api:3.1.8-133.v17b_1ff2e0599 -checks-api:2.2.0 +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 From 941d3e2f1d268005ce4f687744ac2a349faa1ccc 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:58:55 +0200 Subject: [PATCH 045/333] chore: deps(dockerfile): bump image "debian" (#592) 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 5b9483cd1fee595591a74fa0e852be96f7eabd69 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:05:31 +0200 Subject: [PATCH 046/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#593) 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 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 c14b64c3d2a7c4e10893422bcc691f8820bc33e9 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 6 Sep 2024 17:08:12 +0200 Subject: [PATCH 047/333] chore(jenkins): Update Jenkins plugins (#603) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index eb213c2f..2fc688a0 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -44,7 +44,7 @@ mina-sshd-api-core:2.13.2-125.v200281b_61d59 okhttp-api:4.11.0-172.vda_da_1feeb_c6e pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:332.vb_232ced67fa_9 +pipeline-graph-view:335.v064a_314706a_e 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:3953.v19f11da_8d2fa_ +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_ From e4ea798935725d2cd8e6dbd9993c24850a524506 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 17:14:01 +0200 Subject: [PATCH 048/333] chore: deps(dockerfile): bump golang version (#604) 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 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 9e1b1ce0827976f404ff409999d22aa8e7a9399a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 10:35:48 +0200 Subject: [PATCH 049/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#605) 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 a7b5b76b5f2b62664e0b330de957497f6bfb03da Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 9 Sep 2024 10:36:09 +0200 Subject: [PATCH 050/333] chore(jenkins): Update Jenkins plugins (#606) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 2fc688a0..31a4115f 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -16,7 +16,7 @@ credentials:1371.vfee6b_095f0a_3 display-url-api:2.204.vf6fddd8a_8b_e9 durable-task:568.v8fb_5c57e8417 echarts-api:5.5.1-1 -font-awesome-api:6.6.0-1 +font-awesome-api:6.6.0-2 git-client:5.0.0 git:5.4.1 github-api:1.321-468.v6a_9f5f2d5a_7e From 37be34a32dfd46d9f23f2573bb53b56da8b6089a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 06:43:38 +0200 Subject: [PATCH 051/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/node (#613) Bumps jenkins/ssh-agent from 5.46.0 to 5.47.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> --- dockerfiles/node/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 8689be81f505fe9621fac8cda296e2f1b860ff49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 06:44:14 +0200 Subject: [PATCH 052/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/python (#612) Bumps jenkins/ssh-agent from 5.46.0 to 5.47.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> --- dockerfiles/python/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 460e7d5dca9164774c89fc4d207f803e7346b3d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 06:44:39 +0200 Subject: [PATCH 053/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/android (#611) Bumps jenkins/ssh-agent from 5.46.0 to 5.47.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> --- dockerfiles/android/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From bd960a69d0b58ea17913f55eb8e62c3a7ae53547 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 06:45:36 +0200 Subject: [PATCH 054/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/golang (#610) Bumps jenkins/ssh-agent from 5.46.0 to 5.47.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> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 && \ From c0f1e3b390791f507f20ad312accb1a502a48fc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 06:46:03 +0200 Subject: [PATCH 055/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/multi (#609) Bumps jenkins/ssh-agent from 5.46.0 to 5.47.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> --- dockerfiles/multi/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From fceb4aab0f1952466d2e602f2a5df612380b37d6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 06:46:26 +0200 Subject: [PATCH 056/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/maven (#608) Bumps jenkins/ssh-agent from 5.46.0 to 5.47.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> --- dockerfiles/maven/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 && \ From c783d8b399a4febe361289ada4f1e72250198b6e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Sep 2024 06:47:51 +0200 Subject: [PATCH 057/333] Bump ssh-agent version to 5.47.0 (#619) 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> --- 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 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 From 3a04470d39edaf3303da8e4de7d03fdc7b12a701 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 10 Sep 2024 06:48:29 +0200 Subject: [PATCH 058/333] chore(jenkins): Update Jenkins plugins (#621) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 31a4115f..2f91b9b1 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -44,7 +44,7 @@ mina-sshd-api-core:2.13.2-125.v200281b_61d59 okhttp-api:4.11.0-172.vda_da_1feeb_c6e pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:335.v064a_314706a_e +pipeline-graph-view:340.v28cecee8b_25f pipeline-groovy-lib:730.ve57b_34648c63 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ From bb3364f6b620dc167bd24ca93e803170f7746a51 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 11 Sep 2024 15:31:06 +0200 Subject: [PATCH 059/333] chore(jenkins): Update Jenkins plugins (#633) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 2f91b9b1..58a92702 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.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_ @@ -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 From f061b35b16fc16c396c2487bcda22c243a6cad03 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:32:55 +0200 Subject: [PATCH 060/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#634) 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 5ae2cc5ba1c13b4c573a005bd692ab390aed8873 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 12 Sep 2024 11:38:24 +0200 Subject: [PATCH 061/333] chore(jenkins): Update Jenkins plugins (#641) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 58a92702..08fba48d 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -59,7 +59,7 @@ plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:4.1.0 resource-disposer:0.23 scm-api:696.v778d637b_a_762 -script-security:1358.vb_26663c13537 +script-security:1361.v913100720139 snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f From 33aae2b67c5a700d13c96f6126bd80eb98edaf47 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 15 Sep 2024 10:20:54 +0200 Subject: [PATCH 062/333] chore(jenkins): Update Jenkins plugins (#644) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 08fba48d..d01bb554 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -14,7 +14,7 @@ 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: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 From ede67d1cd8f5cc3cc8f05288b1c683d968a1a416 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 15 Sep 2024 10:26:55 +0200 Subject: [PATCH 063/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#645) 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 caf0b8ae802ea7cd583ed44853f586865473cae2 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 18 Sep 2024 09:17:30 +0200 Subject: [PATCH 064/333] chore(jenkins): Update Jenkins plugins (#647) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index d01bb554..8e3c6450 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -59,7 +59,7 @@ plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:4.1.0 resource-disposer:0.23 scm-api:696.v778d637b_a_762 -script-security:1361.v913100720139 +script-security:1362.v67dc1f0e1b_b_3 snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f From 2fc33137a9c10809dd7485f9a3980f82d6a8489a Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 18 Sep 2024 09:22:03 +0200 Subject: [PATCH 065/333] chore(jenkins): Update Jenkins plugins (#649) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 8e3c6450..f2c620b5 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:1371.vfee6b_095f0a_3 +credentials:1378.v81ef4269d764 display-url-api:2.204.vf6fddd8a_8b_e9 durable-task:577.v2a_8a_4b_7c0247 echarts-api:5.5.1-1 @@ -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 5a2cba6fd38cf0429d76c2649a2d514c671ddabb Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 21 Sep 2024 17:30:05 +0200 Subject: [PATCH 066/333] chore(jenkins): Update Jenkins plugins (#652) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index f2c620b5..50041d42 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -18,11 +18,11 @@ 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:5.5.1 github-api:1.321-468.v6a_9f5f2d5a_7e 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 @@ -56,7 +56,7 @@ 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:1362.v67dc1f0e1b_b_3 From 1709ded8ea637960f9b58fac731e5fbcccee8a0c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 21 Sep 2024 17:36:09 +0200 Subject: [PATCH 067/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#653) 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..73a4cb66 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-19-10-42-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 b109825967da365accebbc12d9138d385c731eb6 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:33:56 +0200 Subject: [PATCH 068/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#654) 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 73a4cb66..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-19-10-42-11 +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 130cfd667764abec2110d171dcf32b6fd382c148 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 08:03:42 +0200 Subject: [PATCH 069/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/android (#662) Bumps jenkins/ssh-agent from 5.47.0 to 5.48.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> --- dockerfiles/android/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 5fb8053bfc887242f6e0578c546f4f64e9968a35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 08:04:12 +0200 Subject: [PATCH 070/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/golang (#657) Bumps jenkins/ssh-agent from 5.47.0 to 5.48.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> --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 && \ From 427aa4c0a3e8e3c9f70224e2e2c85f73c904d65b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 08:04:38 +0200 Subject: [PATCH 071/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/python (#658) Bumps jenkins/ssh-agent from 5.47.0 to 5.48.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> --- dockerfiles/python/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 74b39c3c4f760c3e819800f44765d98da161d572 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 08:04:56 +0200 Subject: [PATCH 072/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/multi (#659) Bumps jenkins/ssh-agent from 5.47.0 to 5.48.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> --- dockerfiles/multi/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 0816d4aae0642803cf39694cfaee0da3893244fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 08:05:25 +0200 Subject: [PATCH 073/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/node (#660) Bumps jenkins/ssh-agent from 5.47.0 to 5.48.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> --- dockerfiles/node/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From a6b0f0ac9595d1604c58345158851f42444ab53b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 08:05:49 +0200 Subject: [PATCH 074/333] chore(deps): bump jenkins/ssh-agent in /dockerfiles/maven (#661) Bumps jenkins/ssh-agent from 5.47.0 to 5.48.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> --- dockerfiles/maven/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 && \ From 6dc75331b5688dde036af469cd4ec917151866be Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Sep 2024 08:06:35 +0200 Subject: [PATCH 075/333] Bump ssh-agent version to 5.48.0 (#663) 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> --- 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 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 From 865d99f7ac04c23d72f6353600bbe3f56df5355f Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 27 Sep 2024 10:36:49 +0200 Subject: [PATCH 076/333] chore(jenkins): Update Jenkins plugins (#665) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 50041d42..36f835ac 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 @@ -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 f68ab413f67f8575b39aeaa659bf91784c3aae12 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:39:06 +0200 Subject: [PATCH 077/333] chore: deps(dockerfile): bump image "debian" (#666) 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 670f32df41e2bb7bef9c05d6c7abc2ca360685a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 10:02:32 +0200 Subject: [PATCH 078/333] chore(deps): bump updatecli/updatecli-action from 2.67.0 to 2.68.0 (#670) Bumps [updatecli/updatecli-action](https://github.com/updatecli/updatecli-action) from 2.67.0 to 2.68.0. - [Release notes](https://github.com/updatecli/updatecli-action/releases) - [Commits](https://github.com/updatecli/updatecli-action/compare/v2.67.0...v2.68.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> --- .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 83e01163..945ad24f 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.67.0 + uses: updatecli/updatecli-action@v2.68.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From 59afb183ac0709cf4e95b0a9e7ff8fa9dd6e8b37 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 2 Oct 2024 17:37:50 +0200 Subject: [PATCH 079/333] chore(jenkins): Update Jenkins plugins (#673) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 36f835ac..6df8fed5 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:1380.va_435002fa_924 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-468.v6a_9f5f2d5a_7e 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_ From 54e41860f276e9581fa5f057678c9c0b8e4dd439 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:39:05 +0200 Subject: [PATCH 080/333] chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#676) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... ockerfile 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 ed970dc6..30be8ed0 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.462.2 +ARG JENKINS_VERSION=2.462.3 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 39e540906096443ce3cb1f961611c70f2bc4a64c 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:39:53 +0200 Subject: [PATCH 081/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#674) 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 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 7c7bf352c6185274f7e4f6cb8f454caf90d9b15c 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:42:39 +0200 Subject: [PATCH 082/333] chore: deps(dockerfile): bump golang version (#675) 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 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 36903bad6e3e397ddd123389c0b59d96877a1a3b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 2 Oct 2024 17:43:44 +0200 Subject: [PATCH 083/333] chore(jenkins): Update Jenkins plugins (#681) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 6df8fed5..6046a0ef 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:1380.va_435002fa_924 +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 From 0b1ff013c6f7f83b1eb5a8019ba1cdd2acad9ca0 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 6 Oct 2024 08:49:02 +0200 Subject: [PATCH 084/333] chore(jenkins): Update Jenkins plugins (#684) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 6046a0ef..b2beca76 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -18,7 +18,7 @@ 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.5.1 +git:5.5.2 github-api:1.321-468.v6a_9f5f2d5a_7e github-branch-source:1797.v86fdb_4d57d43 github:1.40.0 @@ -33,14 +33,14 @@ 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-172.vda_da_1feeb_c6e pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ From 3c5144eb65db83409790424df217178eeb9c98e8 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:50:00 +0200 Subject: [PATCH 085/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#685) 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 1dac37c5ddda7a40f0a49891aa4f9beb477e0eb9 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:26:44 +0200 Subject: [PATCH 086/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#687) 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 a438ae415c3a56d7d15b001b45990a0db56b52c4 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 7 Oct 2024 10:27:54 +0200 Subject: [PATCH 087/333] chore(jenkins): Update Jenkins plugins (#688) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index b2beca76..1a7bbf86 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: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 From e782d7fc7c1b85ff846e8df2aaa6a6cea77fd30c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 8 Oct 2024 10:36:23 +0200 Subject: [PATCH 088/333] chore(jenkins): Update Jenkins plugins (#692) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1a7bbf86..d7096acf 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 f6e051ef6a6352839a4aad91458d2c0c0e4ee645 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 9 Oct 2024 17:53:26 +0200 Subject: [PATCH 089/333] chore(jenkins): Update Jenkins plugins (#694) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index d7096acf..7269da76 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -22,7 +22,7 @@ git:5.5.2 github-api:1.321-468.v6a_9f5f2d5a_7e 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 From 8636bb9bf2844f6639346c7cec0f1d3f6ea60671 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:27:15 +0200 Subject: [PATCH 090/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#695) 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 67fb698c3a3b1ee92353ef4dbe78b322e0b6fa88 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 12 Oct 2024 17:32:09 +0200 Subject: [PATCH 091/333] chore(jenkins): Update Jenkins plugins (#699) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 7269da76..143d758e 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -45,7 +45,7 @@ okhttp-api:4.11.0-172.vda_da_1feeb_c6e pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ pipeline-graph-view:340.v28cecee8b_25f -pipeline-groovy-lib:730.ve57b_34648c63 +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 From 8458ec69fed38e6457e826a7a6381c81687d00ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Oct 2024 07:16:36 +0200 Subject: [PATCH 092/333] 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> --- .github/workflows/anchore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index 7d568448..f7f30c2f 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@64a33b277ea7a1215a3c142735a1091341939ff5 + uses: anchore/scan-action@4e08a16a68fb1b35d2fca00f0607db0b5b5120a7 id: scan with: path: "." From d24c684b4254af8bfacfeab64ac25f28281f1a06 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 15 Oct 2024 09:19:28 +0200 Subject: [PATCH 093/333] chore(jenkins): Update Jenkins plugins (#701) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 143d758e..42f61599 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -59,7 +59,7 @@ 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 +script-security:1365.v4778ca_84b_de5 snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:343.v884f71d78167 ssh-slaves:2.973.v0fa_8c0dea_f9f From 6255775c17737c884c6aa8abdea6dd47189d2eeb Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 16 Oct 2024 10:39:14 +0200 Subject: [PATCH 094/333] chore(jenkins): Update Jenkins plugins (#703) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 42f61599..e512be1c 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -15,7 +15,7 @@ credentials-binding:681.vf91669a_32e45 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 +echarts-api:5.5.1-2 font-awesome-api:6.6.0-2 git-client:5.0.0 git:5.5.2 @@ -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:3969.vdc9d3a_efcc6a_ +workflow-cps:3975.v567e2a_1ffa_22 workflow-durable-task-step:1371.vb_7cec8f3b_95e workflow-job:1436.vfa_244484591f workflow-multibranch:795.ve0cb_1f45ca_9a_ From e7e5d0d07ef4ae44320d70eba2873f99d6eb64ab Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 17 Oct 2024 17:56:37 +0200 Subject: [PATCH 095/333] chore(jenkins): Update Jenkins plugins (#706) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index e512be1c..103d6816 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -15,12 +15,12 @@ credentials-binding:681.vf91669a_32e45 credentials:1384.vf0a_2ed06f9c6 display-url-api:2.204.vf6fddd8a_8b_e9 durable-task:577.v2a_8a_4b_7c0247 -echarts-api:5.5.1-2 +echarts-api:5.5.1-3 font-awesome-api:6.6.0-2 git-client:5.0.0 git:5.5.2 github-api:1.321-468.v6a_9f5f2d5a_7e -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 @@ -78,5 +78,5 @@ 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:926.v9f4f9b_b_98c19 +workflow-support:930.vf51d22b_ce488 ws-cleanup:0.47 From bc320ab5de77f2b07ab1a1f1b8cb83148d83d93a 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:28 +0200 Subject: [PATCH 096/333] chore: deps(dockerfile): bump image "debian" (#707) 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 10174eea1dd52ba5881261a0ee094f8bd1bc6e35 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 18 Oct 2024 11:37:34 +0200 Subject: [PATCH 097/333] chore(jenkins): Update Jenkins plugins (#710) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 103d6816..ce081784 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:488.v0c9639c1a_eb_3 matrix-auth:3.2.2 From 91b60e398251bfe207c74aac9e860b3eae7c1ddc 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:51:09 +0200 Subject: [PATCH 098/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#712) 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 5b415af88867fd047602ce7193e412784617767d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 07:16:50 +0200 Subject: [PATCH 099/333] 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> --- .github/workflows/anchore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index f7f30c2f..b2cf4c9d 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@4e08a16a68fb1b35d2fca00f0607db0b5b5120a7 + uses: anchore/scan-action@ef0b0b023552a0c077534074723a9915280284bb id: scan with: path: "." From 29e2bd9d0e18f597deb8a4543ee10ea63bd0a88c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 07:18:50 +0200 Subject: [PATCH 100/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#715) 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..ee099739 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-21-13-36-44 # 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 a036ee4bc036a280af170745ce89440b97be2931 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 23 Oct 2024 21:31:41 +0200 Subject: [PATCH 101/333] chore(jenkins): Update Jenkins plugins (#716) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index ce081784..199b1ca7 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:488.v0c9639c1a_eb_3 -matrix-auth:3.2.2 +matrix-auth:3.2.3 matrix-project:839.vff91cd7e3a_b_2 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-172.vda_da_1feeb_c6e pipeline-build-step:540.vb_e8849e1a_b_d8 pipeline-graph-analysis:216.vfd8b_ece330ca_ pipeline-graph-view:340.v28cecee8b_25f -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 44dfed579ecb04b2e3c6c436a67b5a5b8280d53c 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:35:22 +0200 Subject: [PATCH 102/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#717) 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 ee099739..b2152b4d 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-13-36-44 +FROM gitpod/workspace-full:2024-10-23-07-30-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 ff0fa53a568751b75c9b5c44b23e12d24b9c83d5 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:35:58 +0200 Subject: [PATCH 103/333] Bump ssh-agent version to 6.1.0 (#718) 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/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> --- 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 3ddf3b057ce454c3e5a28e759b24c0b3b19ec04a Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 24 Oct 2024 12:30:54 +0200 Subject: [PATCH 104/333] chore(jenkins): Update Jenkins plugins (#724) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 199b1ca7..9690c683 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -20,7 +20,7 @@ font-awesome-api:6.6.0-2 git-client:5.0.0 git:5.5.2 github-api:1.321-468.v6a_9f5f2d5a_7e -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 db840e46daf64a825fa0da9a97e98a5c5bc125ce Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 24 Oct 2024 12:36:57 +0200 Subject: [PATCH 105/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#725) 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 b2152b4d..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-23-07-30-43 +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 3002bdc25a00e92fca96a397ecc37adc49f3ffa6 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 27 Oct 2024 13:16:35 +0100 Subject: [PATCH 106/333] chore(jenkins): Update Jenkins plugins (#729) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 9690c683..44dff6ae 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:488.v0c9639c1a_eb_3 matrix-auth:3.2.3 matrix-project:839.vff91cd7e3a_b_2 -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-172.vda_da_1feeb_c6e @@ -59,7 +59,7 @@ plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 resource-disposer:0.24 scm-api:696.v778d637b_a_762 -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 7d53b2be684415c9f216049b19ea7c9df4aea67f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 09:26:56 +0100 Subject: [PATCH 107/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#731) 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 e128a157534720f91b34fb8c516a314b328a15fe Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 29 Oct 2024 09:59:30 +0100 Subject: [PATCH 108/333] chore(jenkins): Update Jenkins plugins (#733) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 44dff6ae..1d5795e5 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:681.vf91669a_32e45 credentials:1384.vf0a_2ed06f9c6 display-url-api:2.204.vf6fddd8a_8b_e9 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:5.0.0 git:5.5.2 From a80c3de7797eb1790bb320db8146b7d6dc6a5227 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 30 Oct 2024 17:48:42 +0100 Subject: [PATCH 109/333] chore(jenkins): Update Jenkins plugins (#735) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1d5795e5..2077cd5d 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:488.v0c9639c1a_eb_3 matrix-auth:3.2.3 matrix-project:839.vff91cd7e3a_b_2 @@ -59,7 +59,7 @@ plain-credentials:183.va_de8f1dd5a_2b_ plugin-util-api:5.1.0 resource-disposer:0.24 scm-api:696.v778d637b_a_762 -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:1436.vfa_244484591f workflow-multibranch:795.ve0cb_1f45ca_9a_ From 55dd6cbd45ab7981d76e00e3bd3055c3653787dd 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:50:50 +0100 Subject: [PATCH 110/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#736) 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 fafa70a2af0c281854de3b53d9c694431906c337 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:51:41 +0100 Subject: [PATCH 111/333] chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#737) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... ockerfile 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 30be8ed0..ec8c9f93 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.462.3 +ARG JENKINS_VERSION=2.479.1 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 173c293bed45a26135e151f4685f423d5f9e35ee 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:36 +0100 Subject: [PATCH 112/333] chore: [node-agent] Bump node version in dockerfiles/maven/Dockerfile (#738) 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/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 780d381065dec3453b9a670bc72223dd3db2c0e8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 30 Oct 2024 17:54:58 +0100 Subject: [PATCH 113/333] chore(jenkins): Update Jenkins plugins (#743) --- dockerfiles/plugins.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 2077cd5d..af12f1b6 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -11,15 +11,15 @@ 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 -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-4 font-awesome-api:6.6.0-2 -git-client:5.0.0 -git:5.5.2 -github-api:1.321-468.v6a_9f5f2d5a_7e +git-client:6.1.0 +git:5.6.0 +github-api:1.321-478.vc9ce627ce001 github-branch-source:1807.v50351eb_7dd13 github:1.40.0 gradle:2.13.1 @@ -35,16 +35,16 @@ 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 -mailer:488.v0c9639c1a_eb_3 +mailer:489.vd4b_25144138f matrix-auth:3.2.3 -matrix-project:839.vff91cd7e3a_b_2 +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 -okhttp-api:4.11.0-172.vda_da_1feeb_c6e +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:380.v3588b_7033338 pipeline-groovy-lib:744.v5b_556ee7c253 pipeline-input-step:495.ve9c153f6067b_ pipeline-milestone-step:119.vdfdc43fc3b_9a_ @@ -58,7 +58,7 @@ 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 +scm-api:698.v8e3b_c788f0a_6 script-security:1367.vdf2fc45f229c snakeyaml-api:2.3-123.v13484c65210a_ ssh-credentials:343.v884f71d78167 @@ -74,7 +74,7 @@ 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:1436.vfa_244484591f +workflow-job:1447.v559b_c710cd2e workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 workflow-step-api:678.v3ee58b_469476 From b5aa1e11cf86855a8ce95a2a62b96c6f4d8f3879 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 31 Oct 2024 09:19:07 +0100 Subject: [PATCH 114/333] chore(jenkins): Update Jenkins plugins (#745) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index af12f1b6..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:1447.v559b_c710cd2e +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 859ff39fde6eb409f585d258e7caf5e00f35acec Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 4 Nov 2024 11:30:55 +0100 Subject: [PATCH 115/333] chore(jenkins): Update Jenkins plugins (#749) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 8c89a8f1..81a4ab36 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -10,7 +10,7 @@ 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 From de361395cdb76c90973dfd38186083e8f1ced393 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 11:32:39 +0100 Subject: [PATCH 116/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#748) 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 976ac23073c6dc415d848cb66cd103c192eaafdd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 09:14:13 +0100 Subject: [PATCH 117/333] 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> --- .github/workflows/anchore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index b2cf4c9d..a0b5b60d 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@ef0b0b023552a0c077534074723a9915280284bb + uses: anchore/scan-action@5ed195cc06065322983cae4bb31e2a751feb86fd id: scan with: path: "." From aaa693bff7c416f83c39a31a35ffb619fb511418 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 09:14:52 +0100 Subject: [PATCH 118/333] 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 --- .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 945ad24f..c4c86db9 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.68.0 + uses: updatecli/updatecli-action@v2.69.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From 93fa29bc061e3d30142d455c479ea0e25eb16ce2 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 5 Nov 2024 09:16:03 +0100 Subject: [PATCH 119/333] chore(jenkins): Update Jenkins plugins (#752) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 81a4ab36..91080555 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -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 55da237aafeb21d195aed1f644e7bc113f03dded Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 6 Nov 2024 09:44:19 +0100 Subject: [PATCH 120/333] chore(jenkins): Update Jenkins plugins (#754) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 91080555..a36023b2 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.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 From 24cc8b0587139c655e92f90af880ac0e12486412 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 7 Nov 2024 09:50:31 +0100 Subject: [PATCH 121/333] chore(jenkins): Update Jenkins plugins (#757) --- 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 cc0ac46e4da290495e914edfc1c8a63fe02a7909 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:56:37 +0100 Subject: [PATCH 122/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#758) 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 25739d3828566304a5ae5ad008e62ab70e45ffbf 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:20 +0100 Subject: [PATCH 123/333] chore: deps(dockerfile): bump golang version (#759) 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 9bb47b0401f7b98504e3cae8fff60ff5637f3a89 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 12 Nov 2024 09:52:38 +0100 Subject: [PATCH 124/333] chore(jenkins): Update Jenkins plugins (#769) --- 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 a936fbd40fa7324ec5a75d6b4b596ae47286a343 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 09:53:27 +0100 Subject: [PATCH 125/333] 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 --- .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 c4c86db9..6c80be4d 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.69.0 + uses: updatecli/updatecli-action@v2.70.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From b19808df0d68c0b9340ff120b13f9b170e4fad44 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 09:56:56 +0100 Subject: [PATCH 126/333] 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 --- .github/workflows/anchore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index a0b5b60d..d38d61a4 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@5ed195cc06065322983cae4bb31e2a751feb86fd + uses: anchore/scan-action@f2ba85e044c8f5e5014c9a539328a9c78d3bfa49 id: scan with: path: "." From 7d3d379eaa9cb770271cc2e6a557dcb59a1294a9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 09:57:32 +0100 Subject: [PATCH 127/333] chore: deps(dockerfile): bump image "debian" (#770) 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/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 a1170a1b5b1eac8ad91ede9df7a9152b1342ca58 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:22:21 +0100 Subject: [PATCH 128/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#771) 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 28060a07a0891a10e5981d452ef7a4020cef5f93 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 14 Nov 2024 09:28:39 +0100 Subject: [PATCH 129/333] chore(jenkins): Update Jenkins plugins (#775) --- 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 f17328e3051094ac2aaf5dc560874c3c58b16feb Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 17 Nov 2024 21:27:55 +0100 Subject: [PATCH 130/333] chore(jenkins): Update Jenkins plugins (#778) --- 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 fa8686166691a92c68c0ceadef878ff57f21271d 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:29:07 +0100 Subject: [PATCH 131/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#779) 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 b19cadeab58ed504e8600434f73fe21b6ac9eace 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:00:21 +0100 Subject: [PATCH 132/333] Bump ssh-agent version to 6.2.0 (#782) 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/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> --- 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 11db0ad54c374b61861e55d59db97927db08d9b3 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 19 Nov 2024 10:17:47 +0100 Subject: [PATCH 133/333] chore(jenkins): Update Jenkins plugins (#784) --- 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 13b949f2ac8df8585db8148b156d281f4ceb478d Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 21 Nov 2024 09:59:43 +0100 Subject: [PATCH 134/333] chore(jenkins): Update Jenkins plugins (#787) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 38f4361a..30b594e3 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,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:3993.v3e20a_37282f8 +workflow-cps:3996.va_f5c1799f978 workflow-durable-task-step:1378.v6a_3e903058a_3 workflow-job:1468.vcf4f5ee92395 workflow-multibranch:795.ve0cb_1f45ca_9a_ From b415756d7b1aa1d7638b0af75e7edeafe24ad5e6 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:52 +0100 Subject: [PATCH 135/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#788) 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 09d28e11b8ae94d081b452957519c3e5fc4f094b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 09:32:44 +0100 Subject: [PATCH 136/333] chore(jenkins): Update Jenkins plugins (#791) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 30b594e3..709d2cf6 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -78,5 +78,5 @@ 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 e7d2a9e001b2e68de0b14608c840837e7139b3e9 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 16:00:06 +0100 Subject: [PATCH 137/333] 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 --- .../workflows/github-docker-registry-push.yml | 4 ++-- docker-compose.yaml | 1 - dockerfiles/agent-discovery/find-name.sh | 24 +++++++++++++++---- 3 files changed, 22 insertions(+), 7 deletions(-) diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index 8e015f0a..b4a33c91 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -91,8 +91,8 @@ jobs: uses: docker/login-action@v3 with: registry: ghcr.io - username: ${{ env.GHCR_USERNAME }} - password: ${{ env.GHCR_TOKEN }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Extract branch name # This step extracts the branch name diff --git a/docker-compose.yaml b/docker-compose.yaml index 60ac4d43..75b0f979 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -59,7 +59,6 @@ services: - python - node - android - - multi - golang - default # The CASC_RELOAD_TOKEN environment variable is used by the Jenkins controller to restart the Configuration as Code (JCasc) plugin configuration. diff --git a/dockerfiles/agent-discovery/find-name.sh b/dockerfiles/agent-discovery/find-name.sh index 7d4efb7b..84a8fc76 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 "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 "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 1bdf4a00992cf11209f5285e5a574b0ad78aaac2 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 16:04:36 +0100 Subject: [PATCH 138/333] Update github-docker-registry-push.yml (#793) --- .github/workflows/github-docker-registry-push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index b4a33c91..8e015f0a 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -91,8 +91,8 @@ jobs: uses: docker/login-action@v3 with: registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + username: ${{ env.GHCR_USERNAME }} + password: ${{ env.GHCR_TOKEN }} - name: Extract branch name # This step extracts the branch name From 871f96aa9455044438ae6a39b09ae97e7987db89 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 16:13:42 +0100 Subject: [PATCH 139/333] Update Dockerfile (#794) --- 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..e598541e 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-20241111-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 a75cc24dad7cb88b0354127016bc5862e0a236c1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 17:13:48 +0100 Subject: [PATCH 140/333] fix(dependencies): debian version in agent-discovery was not tracked. (#795) --- .github/dependabot.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1825becc..20972946 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -42,7 +42,12 @@ updates: directory: "./dockerfiles/sidekick" schedule: interval: weekly - open-pull-requests-limit: 10 + open-pull-requests-limit: 10 + - package-ecosystem: docker + directory: "./dockerfiles/agent-discovery" + schedule: + interval: weekly + open-pull-requests-limit: 10 - package-ecosystem: docker directory: "./dockerfiles/android" schedule: @@ -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 076bf29faf33d519504987083e17c01ab17d433c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 17:25:34 +0100 Subject: [PATCH 141/333] 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. --- .github/dependabot.yml | 2 +- .github/workflows/github-docker-registry-push.yml | 4 ++-- dockerfiles/agent-discovery/find-name.sh | 14 +++++++------- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 20972946..a350a4d1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -47,7 +47,7 @@ updates: directory: "./dockerfiles/agent-discovery" schedule: interval: weekly - open-pull-requests-limit: 10 + open-pull-requests-limit: 10 - package-ecosystem: docker directory: "./dockerfiles/android" schedule: diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index 8e015f0a..b4a33c91 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -91,8 +91,8 @@ jobs: uses: docker/login-action@v3 with: registry: ghcr.io - username: ${{ env.GHCR_USERNAME }} - password: ${{ env.GHCR_TOKEN }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Extract branch name # This step extracts the branch name diff --git a/dockerfiles/agent-discovery/find-name.sh b/dockerfiles/agent-discovery/find-name.sh index 84a8fc76..0471321d 100644 --- a/dockerfiles/agent-discovery/find-name.sh +++ b/dockerfiles/agent-discovery/find-name.sh @@ -79,16 +79,16 @@ 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 +## Check if jenkins_controller is reachable, otherwise fall back to multi_jenkins_controller JENKINS_CONTROLLER="jenkins_controller" -if ! curl -s -f "http://${JENKINS_CONTROLLER}:8080/login" > /dev/null; then +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 "http://${JENKINS_CONTROLLER}:8080/login" > /dev/null; then - echo "Error: Neither primary nor multi controller is reachable" - exit 1 + 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 +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. From 6b07a9415f591553743a5b6dd121c8529999fb49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Nov 2024 17:28:20 +0100 Subject: [PATCH 142/333] 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 --- .github/workflows/anchore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index d38d61a4..23b1b0e3 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@f2ba85e044c8f5e5014c9a539328a9c78d3bfa49 + uses: anchore/scan-action@869c549e657a088dc0441b08ce4fc0ecdac2bb65 id: scan with: path: "." From 06364b98a1968d1b56c9da6ea773724c2aaa860c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 17:36:27 +0100 Subject: [PATCH 143/333] chore(docker): Move to debian:bookworm-20241016-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 e598541e..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-20241111-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 ce3112603dea0f0d31b588830aea05205a4132c3 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 17:39:47 +0100 Subject: [PATCH 144/333] Update github-docker-registry-push.yml --- .github/workflows/github-docker-registry-push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index b4a33c91..8e015f0a 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -91,8 +91,8 @@ jobs: uses: docker/login-action@v3 with: registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + username: ${{ env.GHCR_USERNAME }} + password: ${{ env.GHCR_TOKEN }} - name: Extract branch name # This step extracts the branch name From b442547d8b4f4b24ec2f1a0808f6fcc241cd53c0 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 17:47:00 +0100 Subject: [PATCH 145/333] 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. --- .github/workflows/run-dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/run-dependabot.yml diff --git a/.github/workflows/run-dependabot.yml b/.github/workflows/run-dependabot.yml new file mode 100644 index 00000000..64199a65 --- /dev/null +++ b/.github/workflows/run-dependabot.yml @@ -0,0 +1,19 @@ +name: Run Dependabot + +on: + workflow_dispatch: # Allows manual triggering of the workflow + +jobs: + dependabot: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Run Dependabot + uses: dependabot/fetch-metadata@v1 + with: + package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" From cc7bb531b437c4f356b41dc82069d733f6e4265b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 17:50:05 +0100 Subject: [PATCH 146/333] 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 --- .github/workflows/run-dependabot.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/run-dependabot.yml b/.github/workflows/run-dependabot.yml index 64199a65..9e630171 100644 --- a/.github/workflows/run-dependabot.yml +++ b/.github/workflows/run-dependabot.yml @@ -15,5 +15,3 @@ jobs: with: package-ecosystem: "github-actions" directory: "/" - schedule: - interval: "daily" From 9cbebc0a2457fd44653ac32f4e8e98676a9770d6 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 17:58:11 +0100 Subject: [PATCH 147/333] 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'] --- .github/workflows/run-dependabot.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-dependabot.yml b/.github/workflows/run-dependabot.yml index 9e630171..1b3b0e57 100644 --- a/.github/workflows/run-dependabot.yml +++ b/.github/workflows/run-dependabot.yml @@ -11,7 +11,9 @@ jobs: uses: actions/checkout@v4 - name: Run Dependabot - uses: dependabot/fetch-metadata@v1 + uses: dependabot/dependabot-core@v1 with: - package-ecosystem: "github-actions" + package-manager: "github-actions" directory: "/" + target-branch: "main" + open-pull-requests-limit: 5 From a57ac81167ff3be9d76feec6558aa2d8605a81d2 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 17:59:30 +0100 Subject: [PATCH 148/333] Update run-dependabot.yml --- .github/workflows/run-dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-dependabot.yml b/.github/workflows/run-dependabot.yml index 1b3b0e57..4000d1e3 100644 --- a/.github/workflows/run-dependabot.yml +++ b/.github/workflows/run-dependabot.yml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v4 - name: Run Dependabot - uses: dependabot/dependabot-core@v1 + uses: dependabot/dependabot-core@v0.288.0 with: package-manager: "github-actions" directory: "/" From ebd89d9eb7ebe2400b3d91e801edb2225c4f63dc Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 18:03:00 +0100 Subject: [PATCH 149/333] Delete .github/workflows/run-dependabot.yml --- .github/workflows/run-dependabot.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/workflows/run-dependabot.yml diff --git a/.github/workflows/run-dependabot.yml b/.github/workflows/run-dependabot.yml deleted file mode 100644 index 4000d1e3..00000000 --- a/.github/workflows/run-dependabot.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Run Dependabot - -on: - workflow_dispatch: # Allows manual triggering of the workflow - -jobs: - dependabot: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Run Dependabot - uses: dependabot/dependabot-core@v0.288.0 - with: - package-manager: "github-actions" - directory: "/" - target-branch: "main" - open-pull-requests-limit: 5 From 7dba75341417cc90c2c6a845d79951a15f0fc884 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 22 Nov 2024 18:03:31 +0100 Subject: [PATCH 150/333] chore(jenkins): Update Jenkins plugins (#801) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 709d2cf6..ad312e5f 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -73,7 +73,7 @@ workflow-aggregator:600.vb_57cdd26fdd7 workflow-api:1336.vee415d95c521 workflow-basic-steps:1058.vcb_fc1e3a_21a_9 workflow-cps:3996.va_f5c1799f978 -workflow-durable-task-step:1378.v6a_3e903058a_3 +workflow-durable-task-step:1398.vf6c9e89e5988 workflow-job:1468.vcf4f5ee92395 workflow-multibranch:795.ve0cb_1f45ca_9a_ workflow-scm-step:427.v4ca_6512e7df1 From 439cd113be4f2d501f4d925fe0f0574f0334cdd1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 07:36:39 +0100 Subject: [PATCH 151/333] 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> --- 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 aaa52316..e598541e 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-20241111-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 0b209e73110c1e38ae619df780ef73f07bff470a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 07:38:52 +0100 Subject: [PATCH 152/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#807) 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..9f264c64 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-25-08-14-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 a3a366771d606e9b0c2c2ac4880eb0a3592a6fe8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 07:40:18 +0100 Subject: [PATCH 153/333] 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> --- .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 6c80be4d..f473c7a1 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.70.0 + uses: updatecli/updatecli-action@v2.71.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From e8a67678000f957fd9d8a7df21955ce0fe31705c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 27 Nov 2024 09:16:30 +0100 Subject: [PATCH 154/333] chore(jenkins): Update Jenkins plugins (#809) --- 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 4e9a16713e0e5a28dfb9e5c802f31a29879d35bb 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:54 +0100 Subject: [PATCH 155/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#811) 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 9f264c64..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-25-08-14-30 +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 8f9194f2bfddc65c717b2b398652a8339147b08c 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:23:37 +0100 Subject: [PATCH 156/333] chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#813) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... ockerfile 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 ec8c9f93..e0d72bf9 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.1 +ARG JENKINS_VERSION=2.479.2 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 7b9e0f734ec55e8f526a512ed41d1eb5f4964599 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:05 +0100 Subject: [PATCH 157/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#812) 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 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 b96532cf4327b694d5b5679b546d6d05198d2f04 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:57 +0100 Subject: [PATCH 158/333] Bump ssh-agent version to 6.3.0 (#815) 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/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> --- 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 75b0f979..670835f9 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -108,7 +108,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 63cced17a7703514359bf5cc55b3b23fcf144897 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:23:39 +0100 Subject: [PATCH 159/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#818) 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 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 42f586b8b992a8116ad9ff8338e0eac2543edc46 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:24:10 +0100 Subject: [PATCH 160/333] Bump ssh-agent version to 6.4.0 (#819) 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/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 --- 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 670835f9..801fad2e 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -108,7 +108,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 f549d3edbced1cd8ea4a92e953a927edbbedbdaa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 08:40:47 +0100 Subject: [PATCH 161/333] 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> --- .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 f473c7a1..31c2c7b4 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.71.0 + uses: updatecli/updatecli-action@v2.72.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From 8cc87a0f79f8c4f5b0130cfccd5dcb73b95161b4 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:43:12 +0100 Subject: [PATCH 162/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#824) 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 2667bc881d5287674978d56eab34e490c9846d56 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:44:07 +0100 Subject: [PATCH 163/333] chore: deps(dockerfile): bump image "debian" (#823) 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 e51c30dd826443f014f7c56497aecfa1d673fe25 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 3 Dec 2024 08:44:30 +0100 Subject: [PATCH 164/333] chore(jenkins): Update Jenkins plugins (#825) --- 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 f4824c5f3c0db460527f7ad83350c2e7abd3c5b1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 3 Dec 2024 09:01:06 +0100 Subject: [PATCH 165/333] chore(jenkins): Update Jenkins plugins (#826) From 9d29ed7ca217be5204943e836268ac1a7d6a952e Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 3 Dec 2024 09:01:21 +0100 Subject: [PATCH 166/333] chore(jenkins): Update Jenkins plugins (#828) From 2788dce9223e0ffbde0c676e28411ab7ea4869c3 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 6 Dec 2024 09:26:04 +0100 Subject: [PATCH 167/333] chore(jenkins): Update Jenkins plugins (#831) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 13b0653b..1d0624f0 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 From 8d5bc1f4b866f6d939ebf4969e9cd3bc0dc5bf52 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:27:23 +0100 Subject: [PATCH 168/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#832) 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 b46396f676c8a44aed07551316f36bdd75ecede1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 6 Dec 2024 09:27:53 +0100 Subject: [PATCH 169/333] chore(jenkins): Update Jenkins plugins (#834) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1d0624f0..fe1caf61 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:1309.v0078b_fecd6ed +junit:1311.v39e1716e4eb_e locale:549.v824602fe3393 mailer:489.vd4b_25144138f matrix-auth:3.2.3 From 338396923bc51a263c405bc2185aa0ea8ed59fb5 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:28:33 +0100 Subject: [PATCH 170/333] chore: deps(dockerfile): bump golang version (#833) 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 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 c6af8c61a6a94e8dd4ecddff099ff973e5977f39 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:36:37 +0100 Subject: [PATCH 171/333] Bump ssh-agent version to 6.5.0 (#840) 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/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> --- 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 801fad2e..ba3c6f71 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -108,7 +108,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 76253086ee5421ac8d52b1b2f5f50b5af5b42fb4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 07:24:36 +0100 Subject: [PATCH 172/333] 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> --- .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 31c2c7b4..433522da 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.72.0 + uses: updatecli/updatecli-action@v2.73.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From a56bec446e23e4991f514b4bd56dc5383a872904 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 07:25:18 +0100 Subject: [PATCH 173/333] 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> --- 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 e598541e..64d455a7 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-20241111-slim as prepare-stage +FROM debian:bookworm-20241202-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 404eb250c3577bcc5ece2838799a102321e1c0b3 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 11 Dec 2024 09:39:19 +0100 Subject: [PATCH 174/333] chore(jenkins): Update Jenkins plugins (#844) --- 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 79bd918d30ebe6f8b2c31813a436e9aa1bba0072 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 12 Dec 2024 10:38:24 +0100 Subject: [PATCH 175/333] chore(jenkins): Update Jenkins plugins (#848) --- 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 85e1ad51903cdc5a361c83d14786873467cec4f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 10:47:24 +0100 Subject: [PATCH 176/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#849) 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 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 d49c126a9b56b38b3fcc05a6f8e4b1bb7fa7e67a Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 14 Dec 2024 09:42:12 +0100 Subject: [PATCH 177/333] chore(jenkins): Update Jenkins plugins (#852) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index efaf2907..cecdd58b 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.973.vc9b_85a_61e4fc 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 From 8081b9d29c01d6f7f298a671edc494eb572ab00e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Dec 2024 07:35:39 +0100 Subject: [PATCH 178/333] 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> --- .github/workflows/anchore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index 23b1b0e3..7790f67c 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@869c549e657a088dc0441b08ce4fc0ecdac2bb65 + uses: anchore/scan-action@abae793926ec39a78ab18002bc7fc45bbbd94342 id: scan with: path: "." From 3ff538a826dd19c9093dfcc37f1377e3aefc3f91 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 17 Dec 2024 10:55:37 +0100 Subject: [PATCH 179/333] chore(jenkins): Update Jenkins plugins (#854) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index cecdd58b..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.973.vc9b_85a_61e4fc +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 @@ -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 3f3e6fcb6f4378739b03fb2c816eed1f0efe161a Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 19 Dec 2024 09:31:50 +0100 Subject: [PATCH 180/333] chore(jenkins): Update Jenkins plugins (#858) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 4306755b..331c0b28 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.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 @@ -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 From b1543e3e239edd616cf30a3c813ff5dc175536fa Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 20 Dec 2024 09:34:05 +0100 Subject: [PATCH 181/333] chore(jenkins): Update Jenkins plugins (#860) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 331c0b28..3baf7757 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: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 8280deed7db76d0dd4954d06158d061e5c06ff96 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 21 Dec 2024 17:17:19 +0100 Subject: [PATCH 182/333] chore(jenkins): Update Jenkins plugins (#862) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 3baf7757..e4611590 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:1903.v004d55388f30 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 @@ -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 From 6d9f1efb19e658aaacd27f68d30df956860ffdb1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 22 Dec 2024 10:04:49 +0100 Subject: [PATCH 183/333] chore(jenkins): Update Jenkins plugins (#864) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index e4611590..5417237d 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:1903.v004d55388f30 +configuration-as-code:1909.vb_b_f59a_27d013 credentials-binding:687.v619cb_15e923f credentials:1405.vb_cda_74a_f8974 display-url-api:2.209.v582ed814ff2f From 91748f480359666d8ff27d6cfcdda231d1934e29 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Dec 2024 08:50:44 +0100 Subject: [PATCH 184/333] 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> --- .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 433522da..4f192cca 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.73.0 + uses: updatecli/updatecli-action@v2.74.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From eb0ca54cd0d41419ad2ea1a3c55ee8ca221613f8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 24 Dec 2024 09:35:40 +0100 Subject: [PATCH 185/333] chore(jenkins): Update Jenkins plugins (#867) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 5417237d..2b2a840b 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -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 From 46bd18e1597c0381223b07de01ad80268c15a6dc Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 28 Dec 2024 09:28:56 +0100 Subject: [PATCH 186/333] chore(jenkins): Update Jenkins plugins (#872) --- 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 7a002f9702754615731ad7e6745d956d3dda71d5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 28 Dec 2024 09:30:32 +0100 Subject: [PATCH 187/333] chore: deps(dockerfile): bump image "debian" (#873) 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 000473e2c124330f6d9754278d6a64f024eae332 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 31 Dec 2024 09:49:52 +0100 Subject: [PATCH 188/333] chore(jenkins): Update Jenkins plugins (#877) --- 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 a398a4a17267915033e8566f071f56c81318c928 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 09:50:19 +0100 Subject: [PATCH 189/333] 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> --- .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 4f192cca..9f675741 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.74.0 + uses: updatecli/updatecli-action@v2.75.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From be88c674684808f63ee2ac3ecb29bb7e0becc959 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 31 Dec 2024 09:50:46 +0100 Subject: [PATCH 190/333] 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 --- 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 64d455a7..b4718be3 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-20241202-slim as prepare-stage +FROM debian:bookworm-20241223-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 9d89025f702b382eff02c27f468f2e6f05545120 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 3 Jan 2025 09:38:01 +0100 Subject: [PATCH 191/333] chore(jenkins): Update Jenkins plugins (#879) --- 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 54c17850c19083a2610bc4ca051937351366c64e 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:39:42 +0100 Subject: [PATCH 192/333] Bump ssh-agent version to 6.6.0 (#880) 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/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> --- 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 ba3c6f71..92631ed5 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -108,7 +108,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 29623547dfcb13d97ac872da0c86273e965a95fe Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 4 Jan 2025 09:29:47 +0100 Subject: [PATCH 193/333] chore(jenkins): Update Jenkins plugins (#883) --- 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 62b4f789e3cbd34dc17e415d9e8af11d19c0797c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 7 Jan 2025 11:55:54 +0100 Subject: [PATCH 194/333] chore(jenkins): Update Jenkins plugins (#885) --- 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 7488aa87d677ed35dc55d7384b5a4829170464ad 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:57:11 +0100 Subject: [PATCH 195/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#886) 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 525aac8ede2c139b60794a52965dc5a0bd2cf0e0 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 8 Jan 2025 09:39:51 +0100 Subject: [PATCH 196/333] chore(jenkins): Update Jenkins plugins (#890) --- 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 ba3e780d119895fee4b7e005355d285c720af742 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:44:07 +0100 Subject: [PATCH 197/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#891) 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..f5c132ed 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-07-20-03-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 eb6518d26f3c0f38e5bf1abb73bc712c34b998a1 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:54 +0100 Subject: [PATCH 198/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#893) 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 f5c132ed..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-07-20-03-56 +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 1e58e518728f62f75dd4d2bf93587cf9e030f71e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 12:04:23 +0100 Subject: [PATCH 199/333] chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#895) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... ockerfile 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 e0d72bf9..13101b5f 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.2 +ARG JENKINS_VERSION=2.479.3 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 93741f6cbc52303e3e2000163636d317723026bf Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 10 Jan 2025 09:32:38 +0100 Subject: [PATCH 200/333] chore(jenkins): Update Jenkins plugins (#896) --- 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 097c0de6d7b2ced2979b4dd6a6fd5a8e843784df Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 11 Jan 2025 09:51:06 +0100 Subject: [PATCH 201/333] chore(jenkins): Update Jenkins plugins (#898) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 7d0eb008..ce098f7c 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 From 6473b971656a29fe1bc1da8b61865a85600767a7 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 14 Jan 2025 10:46:15 +0100 Subject: [PATCH 202/333] chore(jenkins): Update Jenkins plugins (#904) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index ce098f7c..ffece5c7 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -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 eb6310e7910c73463ed5e4d2f430322b63b6cedd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 10:46:47 +0100 Subject: [PATCH 203/333] 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 --- dockerfiles/golang/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 && \ From 0edce37260251eeebc52a149a8c664b7d89ea1b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 10:47:30 +0100 Subject: [PATCH 204/333] 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 --- .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 9f675741..4a82d5a2 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.75.0 + uses: updatecli/updatecli-action@v2.76.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From 860a2737e92bb72962988692cea3045e4ea5f797 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 10:48:00 +0100 Subject: [PATCH 205/333] 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 --- dockerfiles/multi/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From d730063df6d3965abcbf418cbc87f43ccb96132d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 10:48:26 +0100 Subject: [PATCH 206/333] 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 --- dockerfiles/maven/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 && \ From dbd5e76ff22721122256f0350ec19da0541d10e7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 10:49:04 +0100 Subject: [PATCH 207/333] 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 --- dockerfiles/node/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 2f681b143625f0ce218a8b966cc809ec83886fa2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 10:49:33 +0100 Subject: [PATCH 208/333] chore: deps(dockerfile): bump image "debian" (#905) 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/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 2fa9c7c1a72e10f743df726779c390f272b53ba9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 10:49:59 +0100 Subject: [PATCH 209/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#906) 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 9666c949a665ed80ccb3c8b2fc12f8c1d030d059 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 10:50:34 +0100 Subject: [PATCH 210/333] Bump ssh-agent version to 6.7.0 (#907) 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/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 --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 2 +- dockerfiles/android/Dockerfile | 2 +- dockerfiles/python/Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 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 92631ed5..8e6734fe 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -108,7 +108,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/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 be7491fd197e13704949f265723440aca281fee1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 15 Jan 2025 10:01:49 +0100 Subject: [PATCH 211/333] chore(jenkins): Update Jenkins plugins (#912) --- 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 32d14466b60df37334f52dfd2964da4c5a14af46 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 16 Jan 2025 09:27:26 +0100 Subject: [PATCH 212/333] chore(jenkins): Update Jenkins plugins (#915) --- 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 86d7690a652f96b6f9a9ad5e22c6589997bdb19c 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:28:36 +0100 Subject: [PATCH 213/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#916) 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 dc0e12726f9497e98ad8cf05a6a2bd16a2ba3604 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 17 Jan 2025 15:47:48 +0100 Subject: [PATCH 214/333] chore(jenkins): Update Jenkins plugins (#919) --- 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 aebafafdaa0caea06ce83606c28a0e0a57166f67 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 17 Jan 2025 15:52:12 +0100 Subject: [PATCH 215/333] chore: deps(dockerfile): bump golang version (#920) 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 83319816e675a976c8455a4ad8e116a4280815f1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 18 Jan 2025 09:51:19 +0100 Subject: [PATCH 216/333] chore(jenkins): Update Jenkins plugins (#923) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index bad03681..1d42b9f8 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -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 d60cb0c0936a2cad85c901eade697d8e879276e1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 20 Jan 2025 10:49:17 +0100 Subject: [PATCH 217/333] chore(jenkins): Update Jenkins plugins (#926) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1d42b9f8..2e86697c 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 From 6ec49ebc94c4678418899adb3e1bff1d7ca03216 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Jan 2025 10:50:07 +0100 Subject: [PATCH 218/333] Bump ssh-agent version to 6.8.0 (#925) 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/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 --- 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 8e6734fe..2cf378e9 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -108,7 +108,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 9b4c26176ba4a8c53e78dff3004f36506f775625 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 08:02:32 +0100 Subject: [PATCH 219/333] 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> --- 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 b4718be3..d58d54ef 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-20241223-slim as prepare-stage +FROM debian:bookworm-20250113-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 0030918042f6baec43b1c36ecbac17e3a063f327 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:33:21 +0100 Subject: [PATCH 220/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#928) 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 ce9b677dcfb8c36588159a83728b3e3d06c7ad01 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 21 Jan 2025 09:33:42 +0100 Subject: [PATCH 221/333] chore(jenkins): Update Jenkins plugins (#930) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 2e86697c..bf1cb315 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -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 From 21827dbe207f1afb75af147bdaa5273d8d13cfe4 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 22 Jan 2025 09:28:31 +0100 Subject: [PATCH 222/333] chore(jenkins): Update Jenkins plugins (#935) --- 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 93e2273e7b1089f9883b1fae86f12b876f094a33 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 23 Jan 2025 09:42:14 +0100 Subject: [PATCH 223/333] chore(jenkins): Update Jenkins plugins (#938) --- 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 154f6087784e96703afebac87f7d8733ae98d097 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 24 Jan 2025 10:07:56 +0100 Subject: [PATCH 224/333] chore(jenkins): Update Jenkins plugins (#940) --- dockerfiles/plugins.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 3861cbb2..9ef56766 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -39,8 +39,8 @@ 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-graph-analysis:216.vfd8b_ece330ca_ @@ -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 02cf142d62afeeccc4e34116c9eda11dc5013998 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:10:09 +0100 Subject: [PATCH 225/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#942) 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 64a6f2ac2b51557ac084b250d3e2f1f8a72f95fd Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 25 Jan 2025 09:39:39 +0100 Subject: [PATCH 226/333] chore(jenkins): Update Jenkins plugins (#943) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 9ef56766..fa1f6ded 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -48,12 +48,12 @@ 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 From 88d825068174f4067505b7ffc8628f0d14048eb9 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 26 Jan 2025 10:30:55 +0100 Subject: [PATCH 227/333] chore(jenkins): Update Jenkins plugins (#944) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index fa1f6ded..93dcf510 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -42,7 +42,7 @@ 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: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_ From b7795a107175a512ede62579117c23b5e32a806b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 06:43:50 +0100 Subject: [PATCH 228/333] 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> --- .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 4a82d5a2..049dbc77 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.76.0 + uses: updatecli/updatecli-action@v2.77.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From 9788b301114f388cfe0d4fc324d1b53544c0b683 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 06:44:14 +0100 Subject: [PATCH 229/333] 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> --- .github/workflows/anchore.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/anchore.yml b/.github/workflows/anchore.yml index 7790f67c..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@abae793926ec39a78ab18002bc7fc45bbbd94342 + uses: anchore/scan-action@7c05671ae9be166aeb155bad2d7df9121823df32 id: scan with: path: "." From 6e61f97747b85c6d0b2f8d2f8dff221c69f4e57b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 06:45:23 +0100 Subject: [PATCH 230/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#948) 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 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 30eb09665cf444fa89940f33f3568099ff194696 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 28 Jan 2025 06:46:06 +0100 Subject: [PATCH 231/333] chore(jenkins): Update Jenkins plugins (#949) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 93dcf510..558114a3 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -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 8259b97a580243854d104e7ac45c26c6b1b02b30 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 29 Jan 2025 10:00:25 +0100 Subject: [PATCH 232/333] chore(jenkins): Update Jenkins plugins (#950) From d0f9c9155d47a3b1c946327acb7766d3d8ba302d Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 29 Jan 2025 10:00:48 +0100 Subject: [PATCH 233/333] chore(jenkins): Update Jenkins plugins (#951) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 558114a3..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 From 5162fa3464ce51ae908bf240a03834bc3124d266 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 4 Feb 2025 09:28:42 +0100 Subject: [PATCH 234/333] chore(jenkins): Update Jenkins plugins (#964) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 5f1b257f..8271e57e 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -44,7 +44,7 @@ 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-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:402.va_9d108235846 +pipeline-graph-view:406.v06871361eb_2d pipeline-groovy-lib:749.v70084559234a_ pipeline-input-step:508.v584c0e9a_2177 pipeline-milestone-step:119.vdfdc43fc3b_9a_ @@ -66,7 +66,7 @@ ssh-slaves:3.1021.va_cc11b_de26a_e sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 timestamper:1.28 -token-macro:400.v35420b_922dcb_ +token-macro:442.v4f452dc3c7c0 trilead-api:2.147.vb_73cc728a_32e variant:70.va_d9f17f859e0 workflow-aggregator:600.vb_57cdd26fdd7 From 94a16bdd70e2144d75ae384653e10ed92068a029 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Feb 2025 09:29:59 +0100 Subject: [PATCH 235/333] Bump ssh-agent version to 6.9.0 (#956) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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> --- 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 2cf378e9..3c2601cd 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -108,7 +108,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 7f53544f..b8a5e685 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 fa8744e6c70d2c84da9678ee25af07f5e84c57a9 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 5 Feb 2025 09:31:16 +0100 Subject: [PATCH 236/333] chore(jenkins): Update Jenkins plugins (#966) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 8271e57e..f66608eb 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:1929.v036b_5a_e1f123 +configuration-as-code:1932.v75cb_b_f1b_698d credentials-binding:687.v619cb_15e923f credentials:1405.vb_cda_74a_f8974 display-url-api:2.209.v582ed814ff2f @@ -44,7 +44,7 @@ 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-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:406.v06871361eb_2d +pipeline-graph-view:407.v7857c9611b_44 pipeline-groovy-lib:749.v70084559234a_ pipeline-input-step:508.v584c0e9a_2177 pipeline-milestone-step:119.vdfdc43fc3b_9a_ @@ -66,7 +66,7 @@ ssh-slaves:3.1021.va_cc11b_de26a_e sshd:3.330.vc866a_8389b_58 structs:338.v848422169819 timestamper:1.28 -token-macro:442.v4f452dc3c7c0 +token-macro:444.v52de7e9c573d trilead-api:2.147.vb_73cc728a_32e variant:70.va_d9f17f859e0 workflow-aggregator:600.vb_57cdd26fdd7 From 478dbbf993a88e46d5087e4cf87cad3a239bd7e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 09:32:30 +0100 Subject: [PATCH 237/333] chore: deps(dockerfile): bump image "debian" (#965) 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 34360791b2cad4688fdc514f2c1016ae6a591355 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 09:32:58 +0100 Subject: [PATCH 238/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#967) 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..8afb7dd2 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-04-16-12-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 5ee29f345443b9feab7372651764db392c4d966d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 09:34:12 +0100 Subject: [PATCH 239/333] chore: deps(dockerfile): bump golang version (#968) 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 b8a5e685..02cd606a 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 e21ede76075a399ce4e4af27caaa9a94334e56dc Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 6 Feb 2025 10:06:08 +0100 Subject: [PATCH 240/333] chore(jenkins): Update Jenkins plugins (#969) --- dockerfiles/plugins.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index f66608eb..3029797b 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.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 @@ -44,17 +44,17 @@ 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-graph-analysis:216.vfd8b_ece330ca_ -pipeline-graph-view:407.v7857c9611b_44 +pipeline-graph-view:409.v98f212e980b_4 pipeline-groovy-lib:749.v70084559234a_ 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 From 2b2c638af869008a4256359b951365c0691e4b20 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 7 Feb 2025 09:50:44 +0100 Subject: [PATCH 241/333] chore(jenkins): Update Jenkins plugins (#977) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 3029797b..dd39a271 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.13.0-153.v91dcd89e2a_22 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 @@ -45,7 +45,7 @@ okhttp-api:4.11.0-183.va_87fc7a_89810 pipeline-build-step:551.v178956c49ef8 pipeline-graph-analysis:216.vfd8b_ece330ca_ pipeline-graph-view:409.v98f212e980b_4 -pipeline-groovy-lib:749.v70084559234a_ +pipeline-groovy-lib:751.v709f84f7d768 pipeline-input-step:508.v584c0e9a_2177 pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2221.vc657003fb_d93 @@ -62,8 +62,8 @@ 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:444.v52de7e9c573d @@ -78,5 +78,5 @@ workflow-job:1498.v33a_0c6f3a_4b_4 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 c28e8fcf2879ed4f38c10264a4cc801b1d881388 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:50:56 +0100 Subject: [PATCH 242/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#973) 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 8afb7dd2..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-02-04-16-12-22 +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 e2bac9b5f7443209004aea6b7d0f9a8fb295529a 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:37 +0100 Subject: [PATCH 243/333] chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#975) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... ockerfile 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 13101b5f..73388ec8 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.3 +ARG JENKINS_VERSION=2.492.1 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From dc87ddd88b64a3ee91e7abcff08e97ab573cff53 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 10 Feb 2025 10:07:06 +0100 Subject: [PATCH 244/333] chore(jenkins): Update Jenkins plugins (#978) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index dd39a271..d0a83601 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -1,6 +1,6 @@ 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 @@ -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,10 +42,10 @@ 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:409.v98f212e980b_4 -pipeline-groovy-lib:751.v709f84f7d768 +pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:508.v584c0e9a_2177 pipeline-milestone-step:119.vdfdc43fc3b_9a_ pipeline-model-api:2.2221.vc657003fb_d93 @@ -72,9 +72,9 @@ 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 From 10f07614adfca1067d2227225004f79ecb789bd5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Feb 2025 10:14:27 +0100 Subject: [PATCH 245/333] 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> --- 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 d58d54ef..9dc82b28 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-20250113-slim as prepare-stage +FROM debian:bookworm-20250203-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 fa718c31afd2723a2be0800876d36d31eace5226 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 11 Feb 2025 10:15:01 +0100 Subject: [PATCH 246/333] chore(jenkins): Update Jenkins plugins (#983) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index d0a83601..e7d6c28a 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -46,7 +46,7 @@ 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 @@ -59,11 +59,11 @@ 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 1c5931fb1cd68e0eeb40b93a02f29e0cb878726c Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 11 Feb 2025 10:15:41 +0100 Subject: [PATCH 247/333] chore(jenkins): Update Jenkins plugins (#986) From f0edd72e9a2ca1884c812edd1431d240199e08f2 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:58 +0100 Subject: [PATCH 248/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#985) 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 54bf3239cc3ac843a07107159df16750efa404c3 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 16 Feb 2025 11:48:16 +0100 Subject: [PATCH 249/333] chore(jenkins): Update Jenkins plugins (#987) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index e7d6c28a..44f54963 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 +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 @@ -51,10 +51,10 @@ 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 From 82173a712490c45606fece5a845a5eefd8f63254 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 12:02:26 +0100 Subject: [PATCH 250/333] chore: deps(dockerfile): bump golang version (#989) 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 2929d00bf68152a319690658aa8b51a0ceaa6a82 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Feb 2025 12:40:27 +0100 Subject: [PATCH 251/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#988) 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 de584bc7ef2d08106b407a6f8c97cd682e52db4b Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 17 Feb 2025 09:40:31 +0100 Subject: [PATCH 252/333] chore(jenkins): Update Jenkins plugins (#994) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 44f54963..411a677e 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.35 caffeine-api:3.1.8-133.v17b_1ff2e0599 -checks-api:2.2.2 +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 From 1c1f2cc516dbcf5db14c7d3f61f5d2a0297cfb86 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 18 Feb 2025 09:50:27 +0100 Subject: [PATCH 253/333] chore(jenkins): Update Jenkins plugins (#995) --- 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 4106d024858cf92fab987fb980b2c14bdcbb82e4 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:11:08 +0100 Subject: [PATCH 254/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#996) 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 33ad1d73d5db87efb021cd66a47d01115140dc1a Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 19 Feb 2025 10:48:40 +0100 Subject: [PATCH 255/333] chore(jenkins): Update Jenkins plugins (#999) --- 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 ebc47f53b89b84c541d141ac15415d823a4327e8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 09:31:32 +0100 Subject: [PATCH 256/333] chore(jenkins): Update Jenkins plugins (#1002) --- 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 bd6b06ed8fc0e02cb114a1d12c2b1dec446b8479 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 14:17:59 +0100 Subject: [PATCH 257/333] 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 --- .../workflows/github-docker-registry-push.yml | 10 ++++ build-docker-compose.yaml | 17 +++++++ docker-compose.yaml | 17 +++++++ dockerfiles/cpp/Dockerfile | 19 +++++++ extract-profiles.sh | 51 +++++++++++++++++++ updatecli/updatecli.d/ssh-agent.yaml | 10 ++++ 6 files changed, 124 insertions(+) create mode 100644 dockerfiles/cpp/Dockerfile create mode 100755 extract-profiles.sh diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index 8e015f0a..66a1a53a 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -204,3 +204,13 @@ 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_agent_${{ env.BRANCH }} diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index 525cf16e..cb11f18f 100644 --- a/build-docker-compose.yaml +++ b/build-docker-compose.yaml @@ -205,6 +205,23 @@ 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 volumes: jenkins_home: null agent-ssh-dir: diff --git a/docker-compose.yaml b/docker-compose.yaml index 3c2601cd..9c1a9724 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -281,6 +281,23 @@ 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_agent_${BRANCH_SUFFIX} + 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 volumes: jenkins_home: null empty_jenkins_home: null diff --git a/dockerfiles/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile new file mode 100644 index 00000000..4c9ab6a6 --- /dev/null +++ b/dockerfiles/cpp/Dockerfile @@ -0,0 +1,19 @@ +FROM jenkins/ssh-agent:6.9.0 + +# 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/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..602dd108 100644 --- a/updatecli/updatecli.d/ssh-agent.yaml +++ b/updatecli/updatecli.d/ssh-agent.yaml @@ -85,6 +85,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 d61868ed9e5eda576a0c212614733c462f7c3627 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 15:21:28 +0100 Subject: [PATCH 258/333] 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 --- .../workflows/github-docker-registry-push.yml | 2 +- docker-compose.yaml | 39 +++++++++++-------- 2 files changed, 24 insertions(+), 17 deletions(-) diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index 66a1a53a..609811f4 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -213,4 +213,4 @@ jobs: context: ./dockerfiles/cpp platforms: linux/amd64, linux/aarch64 push: true - tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:cpp_agent_${{ env.BRANCH }} + tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:cpp__${{ env.BRANCH }} diff --git a/docker-compose.yaml b/docker-compose.yaml index 9c1a9724..f03d5fbf 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -15,7 +15,7 @@ services: - agent-ssh-dir:/ssh-dir # Mounts the agent-ssh-dir volume to the /ssh-dir path inside the container # The healthcheck command checks if the conductor_ok file exists in the /ssh-dir directory. healthcheck: - test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"] + test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ] # Checks if the conductor_ok file exists in the /ssh-dir path interval: 5s timeout: 10s @@ -42,7 +42,7 @@ services: condition: service_completed_successfully # Depends on the successful completion of the sidekick_service # The healthcheck command checks if the find-name.sh script can be executed successfully. healthcheck: - test: ["CMD-SHELL", "/usr/local/bin/find-name.sh || exit 0"] + test: [ "CMD-SHELL", "/usr/local/bin/find-name.sh || exit 0" ] interval: 5s timeout: 10s retries: 50 @@ -60,6 +60,7 @@ services: - node - android - golang + - cpp - default # The CASC_RELOAD_TOKEN environment variable is used by the Jenkins controller to restart the Configuration as Code (JCasc) plugin configuration. environment: @@ -77,7 +78,7 @@ services: sidekick_service: condition: service_completed_successfully # Depends on the successful completion of the sidekick_service healthcheck: - test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"] + test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ] # Checks if the conductor_ok file exists in the /ssh-dir path interval: 5s timeout: 10s @@ -98,7 +99,7 @@ services: sidekick_service: condition: service_completed_successfully # Depends on the successful completion of the sidekick_service healthcheck: - test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"] + test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ] # Checks if the conductor_ok file exists in the /ssh-dir path interval: 5s timeout: 10s @@ -118,7 +119,7 @@ services: jenkins_controller: condition: service_started healthcheck: - test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + 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 @@ -148,7 +149,7 @@ services: jenkins_controller: condition: service_started healthcheck: - test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + 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 @@ -166,7 +167,7 @@ services: jenkins_controller: condition: service_started healthcheck: - test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + 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 @@ -188,7 +189,7 @@ services: ports: - "3000:3000" healthcheck: - test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + 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 @@ -210,7 +211,7 @@ services: ports: - "3000:3000" healthcheck: - test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + 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 @@ -231,7 +232,7 @@ services: sidekick_service: condition: service_completed_successfully # Depends on the successful completion of the sidekick_service healthcheck: - test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"] + test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ] # Checks if the conductor_ok file exists in the /ssh-dir path interval: 5s timeout: 10s @@ -252,7 +253,7 @@ services: - "3000:3000" - "5000:5000" healthcheck: - test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + 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 @@ -274,7 +275,7 @@ services: ports: - "3000:3000" healthcheck: - test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"] + 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 @@ -282,22 +283,28 @@ services: 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_agent_${BRANCH_SUFFIX} + 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-cpp profiles: - cpp depends_on: sidekick_service: - condition: service_completed_successfully + 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"] + 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 + - 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 From a97ee5cc7df305e4c7a3e46a73979bf550ff49c8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 15:23:31 +0100 Subject: [PATCH 259/333] chore(docker): Add ARG for the architecture --- dockerfiles/cpp/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dockerfiles/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile index 4c9ab6a6..44c8b2b2 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,5 +1,8 @@ FROM jenkins/ssh-agent:6.9.0 +ARG TARGETARCH +ENV ARCHITECTURE=$TARGETARCH + # Install necessary C++ build tools RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ From 4b98dd78bb73900f5dd38e17f87c42d38c72b4ae Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 15:26:43 +0100 Subject: [PATCH 260/333] feat(gitpod): Add the cpp target. --- dockerfiles/gitpodURL.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/gitpodURL.sh b/dockerfiles/gitpodURL.sh index ce668ed5..d3d39b0a 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" "default") # Initialize an empty string for the message message="As a gentle reminder, the current profiles are: " From 9d845391e7c382ad2df565a59700a862ea510e29 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 15:30:13 +0100 Subject: [PATCH 261/333] fix(compose): branch suffix needs a dollar (who doesn't?) --- docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index f03d5fbf..647fa074 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -283,7 +283,7 @@ services: 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} + 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-cpp From 4c961afcf47b557fe3c12cb82428d0a691d6f6bd Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 15:32:57 +0100 Subject: [PATCH 262/333] fix(ga): Remove one `_` (#1006) --- .github/workflows/github-docker-registry-push.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index 609811f4..02569763 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -213,4 +213,4 @@ jobs: context: ./dockerfiles/cpp platforms: linux/amd64, linux/aarch64 push: true - tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:cpp__${{ env.BRANCH }} + tags: ghcr.io/${{ env.REPO_NAME }}/jenkinsci-tutorials:cpp_${{ env.BRANCH }} From 9e110a523baa4cf133546ebce8942d4c42dca6db Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 15:33:33 +0100 Subject: [PATCH 263/333] fix(docker): No need for an architecture ARG --- dockerfiles/cpp/Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/dockerfiles/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile index 44c8b2b2..4c9ab6a6 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,8 +1,5 @@ FROM jenkins/ssh-agent:6.9.0 -ARG TARGETARCH -ENV ARCHITECTURE=$TARGETARCH - # Install necessary C++ build tools RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ From 9a8277261f35900008ba1859958a1c6646b15ab6 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 21 Feb 2025 15:40:29 +0100 Subject: [PATCH 264/333] fix(compose): No need for cpp extension --- docker-compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index 647fa074..ced98bf9 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -286,7 +286,7 @@ services: 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-cpp + container_name: desktop-jenkins_agent-1 profiles: - cpp depends_on: From 0e89dd529ab34b9ebb61639cc55f6e9d886a1fa8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 22 Feb 2025 09:59:16 +0100 Subject: [PATCH 265/333] chore(jenkins): Update Jenkins plugins (#1007) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index c4a53b3f..d2da023b 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -21,7 +21,7 @@ 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 From 552add3b390d12a5177f2dec699794dee7ce5eca Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 23 Feb 2025 09:39:05 +0100 Subject: [PATCH 266/333] chore(jenkins): Update Jenkins plugins (#1008) --- dockerfiles/plugins.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index d2da023b..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 @@ -26,15 +26,15 @@ 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 1e3c220d26e9eb8719a069e59c1894c756eafa07 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 24 Feb 2025 15:42:06 +0100 Subject: [PATCH 267/333] chore(jenkins): Update Jenkins plugins (#1010) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index be7568ba..64b64d0d 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -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 From 702f1c60a795e0c4c49fb3388f2c42bf7e38ed6a Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 24 Feb 2025 15:45:31 +0100 Subject: [PATCH 268/333] chore(jenkins): Update Jenkins plugins (#1013) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 64b64d0d..4f811295 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -44,7 +44,7 @@ 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 From 69e981cdfbfa2696959aaf6b57f40d09893d184d 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:46:12 +0100 Subject: [PATCH 269/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1012) 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 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 e2714b7e2b5849f74152974af73a84ebd102e6c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Feb 2025 08:20:06 +0100 Subject: [PATCH 270/333] 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> --- .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 049dbc77..d6b21d0d 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.77.0 + uses: updatecli/updatecli-action@v2.78.1 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From d343e04156f84c9762815ee14a001e326c28fbfc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Feb 2025 08:23:59 +0100 Subject: [PATCH 271/333] chore: deps(dockerfile): bump image "debian" (#1016) 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 44bfa904def3d4df00ec43252be68aa61ac991ec Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 25 Feb 2025 09:27:42 +0100 Subject: [PATCH 272/333] chore(jenkins): Update Jenkins plugins (#1015) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 4f811295..8a1b9b31 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -1,5 +1,5 @@ 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 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ @@ -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 @@ -47,7 +47,7 @@ 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-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 79fb68c9700c74a79e03994f25ae31c4180a3a3a Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 26 Feb 2025 09:29:52 +0100 Subject: [PATCH 273/333] chore(jenkins): Update Jenkins plugins (#1022) --- dockerfiles/plugins.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 8a1b9b31..3be69bee 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 @@ -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 @@ -48,12 +48,12 @@ pipeline-graph-view:419.v946ff4a_49e1c pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:513.v7eb_fe7e2c0fc 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 @@ -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 3f8b912e5e3519bb1c519b6923261ab982757930 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 27 Feb 2025 09:28:42 +0100 Subject: [PATCH 274/333] chore(jenkins): Update Jenkins plugins (#1023) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 3be69bee..862d2ed7 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -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_ @@ -46,7 +46,7 @@ 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.2234.v4a_b_13b_8cd590 pipeline-model-definition:2.2234.v4a_b_13b_8cd590 @@ -58,7 +58,7 @@ 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_ From c8296b9a8f16f871556668b3bae54e3431f79f81 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 09:46:04 +0100 Subject: [PATCH 275/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1024) 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 e68d7db1daa3765973376d71780ef866b98a4e48 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 28 Feb 2025 10:32:20 +0100 Subject: [PATCH 276/333] chore(jenkins): Update Jenkins plugins (#1027) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 862d2ed7..d9cac720 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -42,7 +42,7 @@ 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 @@ -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:4030.v7c3a_975886a_8 workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1505.vea_4b_20a_4a_495 workflow-multibranch:803.v08103b_87c280 From 1836de4cd5574506917678b699ce0865c2d18d57 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 1 Mar 2025 09:35:36 +0100 Subject: [PATCH 277/333] chore(jenkins): Update Jenkins plugins (#1028) --- dockerfiles/plugins.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index d9cac720..43461518 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 @@ -48,12 +48,12 @@ 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:4030.v7c3a_975886a_8 +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 096d8179fc025070283b5a986f9f8de7ccc021bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 09:28:35 +0100 Subject: [PATCH 278/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1030) 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 8e2637f66151cdb4974755744b8d0a53b8468bdb Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 5 Mar 2025 07:49:20 +0100 Subject: [PATCH 279/333] chore(jenkins): Update Jenkins plugins (#1033) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 43461518..b3a2f81a 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -44,9 +44,9 @@ 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 @@ -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:4039.vd58c465ea_71a_ workflow-durable-task-step:1405.v1fcd4a_d00096 workflow-job:1505.vea_4b_20a_4a_495 workflow-multibranch:803.v08103b_87c280 From 28d13804a0ed9ff8531f9cdf5517d3b939af8a2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Mar 2025 07:49:40 +0100 Subject: [PATCH 280/333] 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 --- 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 9dc82b28..a276c66f 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-20250203-slim as prepare-stage +FROM debian:bookworm-20250224-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 4fc9ef896b53e79098bf618b4c3dfdf91ce9f82e Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 5 Mar 2025 07:50:27 +0100 Subject: [PATCH 281/333] chore(jenkins): Update Jenkins plugins (#1035) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index b3a2f81a..f121579f 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -48,12 +48,12 @@ pipeline-graph-view:423.v765c49ca_da_3f pipeline-groovy-lib:752.vdddedf804e72 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:4039.vd58c465ea_71a_ +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 d9471c2497bb9c1064070f0c64df03fea9b1f017 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:50:54 +0100 Subject: [PATCH 282/333] chore: deps(dockerfile): bump golang version (#1034) 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 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 30c35f05bd7d342fdd96d888fa8900948c7d16c4 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 8 Mar 2025 22:59:54 +0100 Subject: [PATCH 283/333] chore(jenkins): Update Jenkins plugins (#1041) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index f121579f..6b1380cc 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 0f83e8f493f842310257fb960e09073ff8cd66a7 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:14:01 +0100 Subject: [PATCH 284/333] Bump ssh-agent version to 6.10.0 (#1044) 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/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> --- build-docker-compose.yaml | 2 +- docker-compose.yaml | 28 ++++++++++++++-------------- 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, 22 insertions(+), 22 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index cb11f18f..36832739 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 ced98bf9..4de602b9 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -15,7 +15,7 @@ services: - agent-ssh-dir:/ssh-dir # Mounts the agent-ssh-dir volume to the /ssh-dir path inside the container # The healthcheck command checks if the conductor_ok file exists in the /ssh-dir directory. healthcheck: - test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ] + test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"] # Checks if the conductor_ok file exists in the /ssh-dir path interval: 5s timeout: 10s @@ -42,7 +42,7 @@ services: condition: service_completed_successfully # Depends on the successful completion of the sidekick_service # The healthcheck command checks if the find-name.sh script can be executed successfully. healthcheck: - test: [ "CMD-SHELL", "/usr/local/bin/find-name.sh || exit 0" ] + test: ["CMD-SHELL", "/usr/local/bin/find-name.sh || exit 0"] interval: 5s timeout: 10s retries: 50 @@ -78,7 +78,7 @@ services: sidekick_service: condition: service_completed_successfully # Depends on the successful completion of the sidekick_service healthcheck: - test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ] + test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"] # Checks if the conductor_ok file exists in the /ssh-dir path interval: 5s timeout: 10s @@ -99,7 +99,7 @@ services: sidekick_service: condition: service_completed_successfully # Depends on the successful completion of the sidekick_service healthcheck: - test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ] + test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"] # Checks if the conductor_ok file exists in the /ssh-dir path interval: 5s timeout: 10s @@ -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 @@ -119,7 +119,7 @@ services: jenkins_controller: condition: service_started healthcheck: - test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ] + 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 @@ -149,7 +149,7 @@ services: jenkins_controller: condition: service_started healthcheck: - test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ] + 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 @@ -167,7 +167,7 @@ services: jenkins_controller: condition: service_started healthcheck: - test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ] + 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 @@ -189,7 +189,7 @@ services: ports: - "3000:3000" healthcheck: - test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ] + 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 @@ -211,7 +211,7 @@ services: ports: - "3000:3000" healthcheck: - test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ] + 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 @@ -232,7 +232,7 @@ services: sidekick_service: condition: service_completed_successfully # Depends on the successful completion of the sidekick_service healthcheck: - test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ] + test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"] # Checks if the conductor_ok file exists in the /ssh-dir path interval: 5s timeout: 10s @@ -253,7 +253,7 @@ services: - "3000:3000" - "5000:5000" healthcheck: - test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ] + 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 @@ -275,7 +275,7 @@ services: ports: - "3000:3000" healthcheck: - test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ] + 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 @@ -297,7 +297,7 @@ services: ports: - "3000:3000" healthcheck: - test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ] + 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 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/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile index 4c9ab6a6..35fe4eb0 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.9.0 +FROM jenkins/ssh-agent:6.10.0 # 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 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 76389b27db6cd4c8fe5cec0523bfca502febe59f 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:14:31 +0100 Subject: [PATCH 285/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1042) 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 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 27b39208476b90736b9974a75e6ff0af4a7f82b6 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:14:50 +0100 Subject: [PATCH 286/333] chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#1043) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... ockerfile 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 73388ec8..1332cdaf 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.1 +ARG JENKINS_VERSION=2.492.2 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 68a389ac125317a0a37df88982d5ee28cd4fb342 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 12 Mar 2025 09:37:31 +0100 Subject: [PATCH 287/333] chore(jenkins): Update Jenkins plugins (#1050) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 6b1380cc..1e6a0d0f 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 88454a3db676013a0fbb7ea5987a2eede6f24b48 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:40:21 +0100 Subject: [PATCH 288/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1051) 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 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 1b86a706381e6b2be30cca79204235f0916ac7c1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 13 Mar 2025 14:43:28 +0100 Subject: [PATCH 289/333] chore(jenkins): Update Jenkins plugins (#1055) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 1e6a0d0f..c98fd29a 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 6a802c6ee2cdd365f11bb86ff558b6a51572f3eb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 13 Mar 2025 15:03:02 +0100 Subject: [PATCH 290/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1058) 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 d55f053f198e5847abc9e9467e271e085b6885c3 Mon Sep 17 00:00:00 2001 From: Bervianto Leo Pratama Date: Fri, 14 Mar 2025 00:28:39 +0700 Subject: [PATCH 291/333] 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 --- .github/dependabot.yml | 5 ++++ .github/labeler.yml | 6 +++++ .../workflows/github-docker-registry-push.yml | 10 ++++++++ build-docker-compose.yaml | 20 +++++++++++++++ docker-compose.yaml | 25 ++++++++++++++++++- dockerfiles/dotnet/Dockerfile | 22 ++++++++++++++++ dockerfiles/plugins.txt | 1 + 7 files changed, 88 insertions(+), 1 deletion(-) create mode 100644 dockerfiles/dotnet/Dockerfile diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a350a4d1..ba747743 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/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index 02569763..15430e5c 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -214,3 +214,13 @@ jobs: 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/build-docker-compose.yaml b/build-docker-compose.yaml index 36832739..a7db261a 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: @@ -222,6 +223,25 @@ services: 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 4de602b9..0c34c62e 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: @@ -61,6 +62,7 @@ services: - android - 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: @@ -304,7 +306,28 @@ 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 - + 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/dotnet/Dockerfile b/dockerfiles/dotnet/Dockerfile new file mode 100644 index 00000000..92e856b5 --- /dev/null +++ b/dockerfiles/dotnet/Dockerfile @@ -0,0 +1,22 @@ +FROM jenkins/ssh-agent:6.10.0 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/plugins.txt b/dockerfiles/plugins.txt index c98fd29a..0d246bd0 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -11,6 +11,7 @@ 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 +coverage:2.2.0 credentials-binding:687.v619cb_15e923f credentials:1408.va_622a_b_f5b_1b_1 display-url-api:2.209.v582ed814ff2f From 46126f69cada9089a56315dd09f89a5ff27e8d4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Mar 2025 18:30:20 +0100 Subject: [PATCH 292/333] 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> --- .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 d6b21d0d..5468c15e 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.78.1 + uses: updatecli/updatecli-action@v2.79.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From 40639cc02d418141c335305fcfb3eacbfb2d6fd4 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 16 Mar 2025 15:51:24 +0100 Subject: [PATCH 293/333] chore(jenkins): Update Jenkins plugins (#1063) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 0d246bd0..caf5793f 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -37,7 +37,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 efbf769ea796d5596c6f2af0f34665582fcba433 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 16 Mar 2025 15:54:11 +0100 Subject: [PATCH 294/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1064) 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 4c5d5a0a6c5074acdd9ea5f82d940e65da243a92 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 18 Mar 2025 10:14:39 +0100 Subject: [PATCH 295/333] chore(jenkins): Update Jenkins plugins (#1067) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index caf5793f..12da3e16 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -71,9 +71,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 bcb93de7c9f48748389815da2ac74e09c61283f3 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:19:58 +0100 Subject: [PATCH 296/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1069) 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 a1d9edf01179a7cd994fbded939b17cb6e5cecda 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:20:53 +0100 Subject: [PATCH 297/333] chore: deps(dockerfile): bump image "debian" (#1068) 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 0523214511e304bf58baa02acafeecd6a9cc9ad8 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 22 Mar 2025 09:40:58 +0100 Subject: [PATCH 298/333] chore(jenkins): Update Jenkins plugins (#1075) --- dockerfiles/plugins.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 12da3e16..9f61092d 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -4,16 +4,16 @@ 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.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 coverage:2.2.0 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 @@ -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:1317.v5b_35d792b_06a_ +junit:1319.v000471ca_e5e2 locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.5 @@ -70,10 +70,10 @@ 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-multibranch:803.v08103b_87c280 From 602dc2e65e7c7bd682fca4eff289ed3cd0157ef3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 22 Mar 2025 09:43:03 +0100 Subject: [PATCH 299/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1076) 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 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 91b864e4446c535b878b176385274e155bdc176e Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 24 Mar 2025 09:36:04 +0100 Subject: [PATCH 300/333] chore(jenkins): Update Jenkins plugins (#1078) --- dockerfiles/plugins.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 9f61092d..887f6216 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -38,7 +38,7 @@ 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 @@ -75,7 +75,7 @@ workflow-api:1366.vf1fb_e1a_f6b_22 workflow-basic-steps:1079.vce64b_a_929c5a_ 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 2010fed4818f34bf3037b8f61f91805e079c0b03 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 24 Mar 2025 17:29:18 +0100 Subject: [PATCH 301/333] chore(gitpod): Add dotnet --- dockerfiles/gitpodURL.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/gitpodURL.sh b/dockerfiles/gitpodURL.sh index d3d39b0a..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" "cpp" "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: " From 39d03096861d94b07cad9539333908ac38f576d6 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Mon, 24 Mar 2025 22:10:54 +0100 Subject: [PATCH 302/333] chore(jenkins): Update Jenkins plugins (#1079) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 887f6216..f6604283 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -57,7 +57,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 From a5d607a6072e363e88e9e0971bffc9f7241c8080 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Mar 2025 09:06:32 +0100 Subject: [PATCH 303/333] 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> --- 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 a276c66f..b8e305e8 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-20250224-slim as prepare-stage +FROM debian:bookworm-20250317-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 a685d7a59bd3b5a3755857ac878c522960697024 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 26 Mar 2025 12:06:50 +0100 Subject: [PATCH 304/333] chore(jenkins): Update Jenkins plugins (#1084) --- dockerfiles/plugins.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index f6604283..4d4f9ad7 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -5,10 +5,10 @@ bootstrap5-api:5.3.3-2 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 coverage:2.2.0 @@ -20,7 +20,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 @@ -44,7 +44,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 @@ -56,12 +56,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 @@ -73,7 +73,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 eda95351056fbe48924f76d9d854e22e836aab08 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sat, 29 Mar 2025 10:09:19 +0100 Subject: [PATCH 305/333] chore(jenkins): Update Jenkins plugins (#1089) --- dockerfiles/plugins.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 4d4f9ad7..d9bd51cf 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 @@ -20,9 +20,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 @@ -42,7 +42,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 @@ -75,7 +75,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 d2e86c69e8ccf6ce8c70a91cde0c825d5c2e967a 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:17:13 +0100 Subject: [PATCH 306/333] Bump ssh-agent version to 6.11.1 (#1091) 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 "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> --- build-docker-compose.yaml | 6 +++--- 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, 11 insertions(+), 11 deletions(-) diff --git a/build-docker-compose.yaml b/build-docker-compose.yaml index a7db261a..abd4dd9f 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.10.0 + image: jenkins/ssh-agent:6.11.1 container_name: desktop-jenkins_agent-1 profiles: - default @@ -234,14 +234,14 @@ services: jenkins_controller: condition: service_started ports: - - "5000:5000" + - "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 + - 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 0c34c62e..7b072f2a 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.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/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile index 35fe4eb0..637c599e 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.10.0 +FROM jenkins/ssh-agent:6.11.1 # 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 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 feee6b181f0b92e89c73d29d029f8382852a6944 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:17:41 +0100 Subject: [PATCH 307/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1090) 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 643bc92cad19857738f7ab8a2d0b65fb37dcd723 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Apr 2025 10:15:12 +0200 Subject: [PATCH 308/333] 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> --- .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 5468c15e..deaca290 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.79.0 + uses: updatecli/updatecli-action@v2.81.0 # This step runs Updatecli in Dry Run mode # It uses the "diff" command of updatecli with the specified config and values files From aeb8fc670e065e8c36a1f7f69d9d2936e09aaf6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Apr 2025 10:15:32 +0200 Subject: [PATCH 309/333] 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 --- dockerfiles/dotnet/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/dotnet/Dockerfile b/dockerfiles/dotnet/Dockerfile index 92e856b5..2e1275cf 100644 --- a/dockerfiles/dotnet/Dockerfile +++ b/dockerfiles/dotnet/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 # 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 && \ From c9eba48994f52b72dc4ddcb35ae365bb7ccbc533 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 1 Apr 2025 10:16:42 +0200 Subject: [PATCH 310/333] chore(jenkins): Update Jenkins plugins (#1098) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index d9bd51cf..5c7f5def 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -37,7 +37,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 From 594e318f0b974593f0f84100e221e8a4928dc5b9 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 2 Apr 2025 10:42:57 +0200 Subject: [PATCH 311/333] chore(jenkins): Update Jenkins plugins (#1100) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 5c7f5def..ce1eddef 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -73,7 +73,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 f9cd55c07317809f3fd047cf3b27c7cd4b093ffd 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:44:59 +0200 Subject: [PATCH 312/333] chore: deps(dockerfile): bump golang version (#1101) 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 e47eff1c22653a2b0023cc96dfae8e9943da1468 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 4 Apr 2025 12:06:49 +0200 Subject: [PATCH 313/333] chore(jenkins): Update Jenkins plugins (#1105) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index ce1eddef..cd83424c 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 coverage:2.2.0 credentials-binding:687.v619cb_15e923f credentials:1413.va_51c53703df1 @@ -40,8 +40,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 f9330aa7e2a4652b1a63dae4349f25fb45ba2a66 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:11:36 +0200 Subject: [PATCH 314/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1106) 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 285b3f9d0a7b60e9f15ce8c7ba002ba2b35ea4c9 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:11:56 +0200 Subject: [PATCH 315/333] chore: [jenkins-controller] Bump Jenkins LTS version in dockerfiles/D... (#1107) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... ockerfile 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 1332cdaf..816153be 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.2 +ARG JENKINS_VERSION=2.492.3 # We then use the official Jenkins image with the specified version as our base image. FROM jenkins/jenkins:"${JENKINS_VERSION}" From 1e98e03a83e761d2a7eb8cec212885931c4ea6cf Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 6 Apr 2025 20:44:59 +0200 Subject: [PATCH 316/333] chore(jenkins): Update Jenkins plugins (#1112) --- dockerfiles/plugins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index cd83424c..2ef942b1 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -11,7 +11,7 @@ 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:1950.v506f96a_69516 -coverage:2.2.0 +coverage:2.3.0 credentials-binding:687.v619cb_15e923f credentials:1413.va_51c53703df1 display-url-api:2.209.v582ed814ff2f From 7c9c5af54223de79008bfecb438559e921742422 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 8 Apr 2025 10:35:54 +0200 Subject: [PATCH 317/333] chore(jenkins): Update Jenkins plugins (#1113) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 2ef942b1..01bc9384 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:1950.v506f96a_69516 +configuration-as-code:1953.v148f87d74b_1e coverage:2.3.0 credentials-binding:687.v619cb_15e923f credentials:1413.va_51c53703df1 @@ -49,12 +49,12 @@ pipeline-graph-view:423.v765c49ca_da_3f 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 From 5fab9ea154f32c9b9034cf7e2d11fa44d7b02aad Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:38:40 +0200 Subject: [PATCH 318/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1115) 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 06999df09204a7205a8c22284bd1d19a7e5e3368 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:39:17 +0200 Subject: [PATCH 319/333] chore: deps(dockerfile): bump image "debian" (#1114) 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 7c7f00b5ead136add92c5aa7c72dabcf83bb5bc1 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Thu, 10 Apr 2025 11:01:38 +0200 Subject: [PATCH 320/333] chore(jenkins): Update Jenkins plugins (#1118) --- dockerfiles/plugins.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 01bc9384..8e1657d9 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -3,11 +3,11 @@ 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 bouncycastle-api:2.30.1.80-256.vf98926042a_9b_ -branch-api:2.1214.v3f652804588d +branch-api:2.1217.v43d8b_b_d8b_2c7 build-timeout:1.37 caffeine-api:3.2.0-166.v72a_6d74b_870f checks-api:367.v18b_7f530e54a_ -cloudbees-folder:6.999.v42253c105443 +cloudbees-folder:6.1003.v5338b_c4d6992 commons-lang3-api:3.17.0-87.v5cf526e63b_8b_ commons-text-api:1.13.0-153.v91dcd89e2a_22 configuration-as-code:1953.v148f87d74b_1e @@ -18,7 +18,7 @@ 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_ @@ -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:1319.v000471ca_e5e2 +junit:1321.v399b_3e395b_5a_ locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.6 @@ -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:557.v95d96f77b_2b_8 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 @@ -68,10 +68,10 @@ 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 @@ -79,5 +79,5 @@ 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 -workflow-support:963.va_600813d04a_a_ +workflow-support:968.v8f17397e87b_8 ws-cleanup:0.48 From 35bf9199ec76c328d7106e8e2eec970e3bf76e46 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Fri, 11 Apr 2025 18:23:49 +0200 Subject: [PATCH 321/333] chore(jenkins): Update Jenkins plugins (#1120) --- dockerfiles/plugins.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 8e1657d9..3b3c5531 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -4,10 +4,10 @@ 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.1217.v43d8b_b_d8b_2c7 -build-timeout:1.37 +build-timeout:1.38 caffeine-api:3.2.0-166.v72a_6d74b_870f checks-api:367.v18b_7f530e54a_ -cloudbees-folder:6.1003.v5338b_c4d6992 +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:1953.v148f87d74b_1e @@ -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:1321.v399b_3e395b_5a_ +junit:1322.v1556dc1c59a_f locale:566.v3323643741cc mailer:489.vd4b_25144138f matrix-auth:3.2.6 @@ -43,7 +43,7 @@ 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:430.v4cf821b_20632 pipeline-groovy-lib:752.vdddedf804e72 @@ -76,7 +76,7 @@ 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:968.v8f17397e87b_8 From 9ab3a5de598f42adb54a03bcb31ee30f6edd4883 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:27:36 +0200 Subject: [PATCH 322/333] Bump ssh-agent version to 6.12.0 (#1125) 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/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> --- 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 abd4dd9f..30c9b74c 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.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 7b072f2a..401549c8 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.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/cpp/Dockerfile b/dockerfiles/cpp/Dockerfile index 637c599e..47ad80ca 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.11.1 +FROM jenkins/ssh-agent:6.12.0 # 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 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 82bfc8175ee0ab55c1a5c7b621c7a7449552bbb7 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Sun, 13 Apr 2025 20:19:28 +0200 Subject: [PATCH 323/333] chore(jenkins): Update Jenkins plugins (#1126) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 3b3c5531..840be60c 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -7,7 +7,7 @@ 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 @@ -16,7 +16,7 @@ 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 +echarts-api:5.6.0-3 font-awesome-api:6.7.2-1 git-client:6.1.3 git:5.7.0 @@ -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:430.v4cf821b_20632 +pipeline-graph-view:433.v28288510b_b_6d pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:127.vb_52887ca_3b_6d From 699b4be8581ebb1e70998927bd783b78e07c7375 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Apr 2025 08:05:46 +0200 Subject: [PATCH 324/333] 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> --- .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 deaca290..fd7fdcb5 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.81.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 From e9e5f676a468b5cc86a925ef80d2575f3033de12 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Apr 2025 08:06:09 +0200 Subject: [PATCH 325/333] 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> --- 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 b8e305e8..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-20250317-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/ From 99a3f4ed2e41a3e55eda5484c64c4fa6c78f4858 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Apr 2025 08:06:31 +0200 Subject: [PATCH 326/333] 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> --- dockerfiles/dotnet/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/dotnet/Dockerfile b/dockerfiles/dotnet/Dockerfile index 2e1275cf..7c46c6c3 100644 --- a/dockerfiles/dotnet/Dockerfile +++ b/dockerfiles/dotnet/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 # 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 && \ From ab1ed599636a7baae57831219e409231223cbfd2 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 15 Apr 2025 08:06:56 +0200 Subject: [PATCH 327/333] chore(jenkins): Update Jenkins plugins (#1131) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 840be60c..6d5ba127 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.0-153.v91dcd89e2a_22 configuration-as-code:1953.v148f87d74b_1e -coverage:2.3.0 +coverage:2.4.0 credentials-binding:687.v619cb_15e923f credentials:1413.va_51c53703df1 display-url-api:2.209.v582ed814ff2f @@ -39,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:433.v28288510b_b_6d +pipeline-graph-view:434.v8d09a_8427c04 pipeline-groovy-lib:752.vdddedf804e72 pipeline-input-step:517.vf8e782ee645c pipeline-milestone-step:127.vb_52887ca_3b_6d From 7c569665f3876ff2815e1ed672386a44a540202b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 15 Apr 2025 08:07:37 +0200 Subject: [PATCH 328/333] chore: deps(dockerfile): bump image "gitpod/workspace-full" (#1132) 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 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: From 643674b04e97f8aa675c2d641f4fd11a63459053 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 15 Apr 2025 08:08:02 +0200 Subject: [PATCH 329/333] chore(jenkins): Update Jenkins plugins (#1133) From 28a80df95171be6b13ce057a0f3959dbd938a473 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Tue, 15 Apr 2025 08:08:23 +0200 Subject: [PATCH 330/333] chore(jenkins): Update Jenkins plugins (#1134) From 0f403e2fbd84d21caf31223b4dd41132e25c4b40 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 16 Apr 2025 09:58:14 +0200 Subject: [PATCH 331/333] chore(dockerfile): update jenkins/ssh-agent to version 6.12.0-jdk21 (#1135) --- dockerfiles/Dockerfile | 3 +-- dockerfiles/android/Dockerfile | 2 +- dockerfiles/cpp/Dockerfile | 2 +- dockerfiles/dotnet/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(+), 10 deletions(-) diff --git a/dockerfiles/Dockerfile b/dockerfiles/Dockerfile index 816153be..bde03382 100644 --- a/dockerfiles/Dockerfile +++ b/dockerfiles/Dockerfile @@ -2,9 +2,8 @@ # 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.3 - # 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}"-lts-jdk21 # We switch to the root user to have the necessary permissions for the upcoming operations. USER root 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 index 47ad80ca..4df3630d 100644 --- a/dockerfiles/cpp/Dockerfile +++ b/dockerfiles/cpp/Dockerfile @@ -1,4 +1,4 @@ -FROM jenkins/ssh-agent:6.12.0 +FROM jenkins/ssh-agent:6.12.0-jdk21 # Install necessary C++ build tools RUN apt-get update && apt-get install -y --no-install-recommends \ diff --git a/dockerfiles/dotnet/Dockerfile b/dockerfiles/dotnet/Dockerfile index 7c46c6c3..55a5d303 100644 --- a/dockerfiles/dotnet/Dockerfile +++ b/dockerfiles/dotnet/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 # 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 && \ 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/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: From dab30cf2f37d3a8315f2b29dca4e4479e678b75f Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 16 Apr 2025 10:24:05 +0200 Subject: [PATCH 332/333] chore(jenkins): Update Jenkins plugins (#1136) --- dockerfiles/plugins.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/plugins.txt b/dockerfiles/plugins.txt index 6d5ba127..6cbce899 100644 --- a/dockerfiles/plugins.txt +++ b/dockerfiles/plugins.txt @@ -13,7 +13,7 @@ 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-3 @@ -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:434.v8d09a_8427c04 +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 @@ -75,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 From a7324fa4affd9ead8a2d56947df940d894d32958 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 16 Apr 2025 11:06:00 +0200 Subject: [PATCH 333/333] chore(dockerfile): update tagfilter for jenkins/ssh-agent to enforce versioning (#1138) --- updatecli/updatecli.d/ssh-agent.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/updatecli/updatecli.d/ssh-agent.yaml b/updatecli/updatecli.d/ssh-agent.yaml index 602dd108..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: