Skip to content
2 changes: 1 addition & 1 deletion build-docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ services:
timeout: 10s
retries: 5
default_agent:
image: jenkins/ssh-agent:7.3.0-jdk21
image: jenkins/ssh-agent:7.5.0-jdk21
container_name: desktop-jenkins_agent-1
profiles:
- default
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,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:7.3.0-jdk21
image: jenkins/ssh-agent:7.5.0-jdk21
container_name: desktop-jenkins_agent-1
profiles:
- default
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/android/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM jenkins/ssh-agent:7.4.0-jdk21 as ssh-agent
FROM jenkins/ssh-agent:7.5.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
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/cpp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM jenkins/ssh-agent:7.3.0-jdk21
FROM jenkins/ssh-agent:7.5.0-jdk21

# Install necessary C++ build tools
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/maven/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM jenkins/ssh-agent:7.4.0-jdk21 as ssh-agent
FROM jenkins/ssh-agent:7.5.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 && \
Expand Down
Loading