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] 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: