Skip to content

Commit 0f83e8f

Browse files
Bump ssh-agent version to 6.10.0 (#1044)
* chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/andr... ... oid/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mult... ... i/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/gola... ... ng/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/mave... ... n/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/node... ... /Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "build-docker-com... ... pose.yaml" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/cpp/... ... Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "dockerfiles/pyth... ... on/Dockerfile" Made with ❤️️ by updatecli * chore: [jenkins/ssh-agent] Bump Docker image tag in "docker-compose.y... ... aml" Made with ❤️️ by updatecli --------- Co-authored-by: GitHub Actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 30c35f0 commit 0f83e8f

File tree

9 files changed

+22
-22
lines changed

9 files changed

+22
-22
lines changed

build-docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ services:
6262
timeout: 10s
6363
retries: 5
6464
default_agent:
65-
image: jenkins/ssh-agent:6.9.0
65+
image: jenkins/ssh-agent:6.10.0
6666
container_name: desktop-jenkins_agent-1
6767
profiles:
6868
- default

docker-compose.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
- agent-ssh-dir:/ssh-dir # Mounts the agent-ssh-dir volume to the /ssh-dir path inside the container
1616
# The healthcheck command checks if the conductor_ok file exists in the /ssh-dir directory.
1717
healthcheck:
18-
test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ]
18+
test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"]
1919
# Checks if the conductor_ok file exists in the /ssh-dir path
2020
interval: 5s
2121
timeout: 10s
@@ -42,7 +42,7 @@ services:
4242
condition: service_completed_successfully # Depends on the successful completion of the sidekick_service
4343
# The healthcheck command checks if the find-name.sh script can be executed successfully.
4444
healthcheck:
45-
test: [ "CMD-SHELL", "/usr/local/bin/find-name.sh || exit 0" ]
45+
test: ["CMD-SHELL", "/usr/local/bin/find-name.sh || exit 0"]
4646
interval: 5s
4747
timeout: 10s
4848
retries: 50
@@ -78,7 +78,7 @@ services:
7878
sidekick_service:
7979
condition: service_completed_successfully # Depends on the successful completion of the sidekick_service
8080
healthcheck:
81-
test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ]
81+
test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"]
8282
# Checks if the conductor_ok file exists in the /ssh-dir path
8383
interval: 5s
8484
timeout: 10s
@@ -99,7 +99,7 @@ services:
9999
sidekick_service:
100100
condition: service_completed_successfully # Depends on the successful completion of the sidekick_service
101101
healthcheck:
102-
test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ]
102+
test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"]
103103
# Checks if the conductor_ok file exists in the /ssh-dir path
104104
interval: 5s
105105
timeout: 10s
@@ -109,7 +109,7 @@ services:
109109
# The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory.
110110
# The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host.
111111
default_agent:
112-
image: jenkins/ssh-agent:6.9.0
112+
image: jenkins/ssh-agent:6.10.0
113113
container_name: desktop-jenkins_agent-1
114114
profiles:
115115
- default
@@ -119,7 +119,7 @@ services:
119119
jenkins_controller:
120120
condition: service_started
121121
healthcheck:
122-
test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ]
122+
test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"]
123123
# Checks if the authorized_keys file exists in the /home/jenkins/.ssh path
124124
interval: 5s
125125
timeout: 10s
@@ -149,7 +149,7 @@ services:
149149
jenkins_controller:
150150
condition: service_started
151151
healthcheck:
152-
test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ]
152+
test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"]
153153
# Checks if the authorized_keys file exists in the /home/jenkins/.ssh path
154154
interval: 5s
155155
timeout: 10s
@@ -167,7 +167,7 @@ services:
167167
jenkins_controller:
168168
condition: service_started
169169
healthcheck:
170-
test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ]
170+
test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"]
171171
# Checks if the authorized_keys file exists in the /home/jenkins/.ssh path
172172
interval: 5s
173173
timeout: 10s
@@ -189,7 +189,7 @@ services:
189189
ports:
190190
- "3000:3000"
191191
healthcheck:
192-
test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ]
192+
test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"]
193193
# Checks if the authorized_keys file exists in the /home/jenkins/.ssh path
194194
interval: 5s
195195
timeout: 10s
@@ -211,7 +211,7 @@ services:
211211
ports:
212212
- "3000:3000"
213213
healthcheck:
214-
test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ]
214+
test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"]
215215
# Checks if the authorized_keys file exists in the /home/jenkins/.ssh path
216216
interval: 5s
217217
timeout: 10s
@@ -232,7 +232,7 @@ services:
232232
sidekick_service:
233233
condition: service_completed_successfully # Depends on the successful completion of the sidekick_service
234234
healthcheck:
235-
test: [ "CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1" ]
235+
test: ["CMD-SHELL", "[ -f /ssh-dir/conductor_ok ] || exit 1"]
236236
# Checks if the conductor_ok file exists in the /ssh-dir path
237237
interval: 5s
238238
timeout: 10s
@@ -253,7 +253,7 @@ services:
253253
- "3000:3000"
254254
- "5000:5000"
255255
healthcheck:
256-
test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ]
256+
test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"]
257257
# Checks if the authorized_keys file exists in the /home/jenkins/.ssh path
258258
interval: 5s
259259
timeout: 10s
@@ -275,7 +275,7 @@ services:
275275
ports:
276276
- "3000:3000"
277277
healthcheck:
278-
test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ]
278+
test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"]
279279
# Checks if the authorized_keys file exists in the /home/jenkins/.ssh path
280280
interval: 5s
281281
timeout: 10s
@@ -297,7 +297,7 @@ services:
297297
ports:
298298
- "3000:3000"
299299
healthcheck:
300-
test: [ "CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1" ]
300+
test: ["CMD-SHELL", "[ -f /home/jenkins/.ssh/authorized_keys ] || exit 1"]
301301
# Checks if the authorized_keys file exists in the /home/jenkins/.ssh path
302302
interval: 5s
303303
timeout: 10s

dockerfiles/android/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM jenkins/ssh-agent:6.9.0 as ssh-agent
1+
FROM jenkins/ssh-agent:6.10.0 as ssh-agent
22

33
# ca-certificates because curl uses certificates from ca-certificates
44
RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip

dockerfiles/cpp/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM jenkins/ssh-agent:6.9.0
1+
FROM jenkins/ssh-agent:6.10.0
22

33
# Install necessary C++ build tools
44
RUN apt-get update && apt-get install -y --no-install-recommends \

dockerfiles/golang/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM jenkins/ssh-agent:6.9.0 as ssh-agent
1+
FROM jenkins/ssh-agent:6.10.0 as ssh-agent
22

33
# ca-certificates because curl uses certificates from ca-certificates
44
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \

dockerfiles/maven/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM jenkins/ssh-agent:6.9.0 as ssh-agent
1+
FROM jenkins/ssh-agent:6.10.0 as ssh-agent
22

33
# ca-certificates because curl uses certificates from ca-certificates
44
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \

dockerfiles/multi/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM jenkins/ssh-agent:6.9.0 as ssh-agent
1+
FROM jenkins/ssh-agent:6.10.0 as ssh-agent
22

33
ARG NODE_MAJOR=20
44

dockerfiles/node/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM jenkins/ssh-agent:6.9.0 as ssh-agent
1+
FROM jenkins/ssh-agent:6.10.0 as ssh-agent
22
ARG NODE_MAJOR=22
33

44
# ca-certificates because curl uses certificates from ca-certificates

dockerfiles/python/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# 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.
22

33
# We start from the Jenkins SSH agent image version 5.20.0.
4-
FROM jenkins/ssh-agent:6.9.0 as ssh-agent
4+
FROM jenkins/ssh-agent:6.10.0 as ssh-agent
55

66
# The RUN command executes a series of commands in the new layer of the image and commits the results.
77
# The following commands are executed:

0 commit comments

Comments
 (0)