Skip to content

Commit ac0469b

Browse files
authored
Merge branch 'main' into dependabot/docker/dockerfiles/agent-discovery/debian-bookworm-20250908-slim
2 parents 3fa8060 + ed4ae3f commit ac0469b

File tree

15 files changed

+21
-81
lines changed

15 files changed

+21
-81
lines changed

.github/workflows/codacy.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

.github/workflows/hadolint.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@v5
3434

3535
- name: Run hadolint scanning on the controller Dockerfile
36-
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf
36+
uses: hadolint/hadolint-action@3fc49fb50d59c6ab7917a2e4195dba633e515b29
3737
with:
3838
dockerfile: ./dockerfiles/Dockerfile
3939
format: sarif
@@ -42,7 +42,7 @@ jobs:
4242
no-fail: true
4343

4444
- name: Run hadolint scanning on the maven Dockerfile
45-
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf
45+
uses: hadolint/hadolint-action@3fc49fb50d59c6ab7917a2e4195dba633e515b29
4646
with:
4747
dockerfile: ./dockerfiles/maven/Dockerfile
4848
format: sarif
@@ -51,7 +51,7 @@ jobs:
5151
no-fail: true
5252

5353
- name: Run hadolint scanning on the multibranch agent Dockerfile
54-
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf
54+
uses: hadolint/hadolint-action@3fc49fb50d59c6ab7917a2e4195dba633e515b29
5555
with:
5656
dockerfile: ./dockerfiles/multi/Dockerfile
5757
format: sarif
@@ -60,7 +60,7 @@ jobs:
6060
no-fail: true
6161

6262
- name: Run hadolint scanning on the node agent Dockerfile
63-
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf
63+
uses: hadolint/hadolint-action@3fc49fb50d59c6ab7917a2e4195dba633e515b29
6464
with:
6565
dockerfile: ./dockerfiles/node/Dockerfile
6666
format: sarif
@@ -69,7 +69,7 @@ jobs:
6969
no-fail: true
7070

7171
- name: Run hadolint scanning on the Python agent Dockerfile
72-
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf
72+
uses: hadolint/hadolint-action@3fc49fb50d59c6ab7917a2e4195dba633e515b29
7373
with:
7474
dockerfile: ./dockerfiles/python/Dockerfile
7575
format: sarif
@@ -78,7 +78,7 @@ jobs:
7878
no-fail: true
7979

8080
- name: Run hadolint scanning on the sidekick Dockerfile
81-
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf
81+
uses: hadolint/hadolint-action@3fc49fb50d59c6ab7917a2e4195dba633e515b29
8282
with:
8383
dockerfile: ./dockerfiles/sidekick/Dockerfile
8484
format: sarif
@@ -87,7 +87,7 @@ jobs:
8787
no-fail: true
8888

8989
- name: Run hadolint scanning on the Android Dockerfile
90-
uses: hadolint/hadolint-action@54c9adbab1582c2ef04b2016b760714a4bfde3cf
90+
uses: hadolint/hadolint-action@3fc49fb50d59c6ab7917a2e4195dba633e515b29
9191
with:
9292
dockerfile: ./dockerfiles/android/Dockerfile
9393
format: sarif

.github/workflows/label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
pull-requests: write
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/labeler@v5
12+
- uses: actions/labeler@v6
1313
with:
1414
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/updatecli.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
# This step installs Updatecli in the runner using the updatecli-action
2525
- name: Install Updatecli in the runner
26-
uses: updatecli/updatecli-action@v2.91.0
26+
uses: updatecli/updatecli-action@v2.92.0
2727

2828
# This step runs Updatecli in Dry Run mode
2929
# It uses the "diff" command of updatecli with the specified config and values files

build-docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ services:
6363
timeout: 10s
6464
retries: 5
6565
default_agent:
66-
image: jenkins/ssh-agent:7.0.0-jdk21
66+
image: jenkins/ssh-agent:7.1.0-jdk21
6767
container_name: desktop-jenkins_agent-1
6868
profiles:
6969
- default

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ services:
121121
# The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory.
122122
# The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host.
123123
default_agent:
124-
image: jenkins/ssh-agent:7.0.0-jdk21
124+
image: jenkins/ssh-agent:7.1.0-jdk21
125125
container_name: desktop-jenkins_agent-1
126126
profiles:
127127
- default

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:7.0.0-jdk21 as ssh-agent
1+
FROM jenkins/ssh-agent:7.1.0-jdk21 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:7.0.0-jdk21
1+
FROM jenkins/ssh-agent:7.1.0-jdk21
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:7.0.0-jdk21 as ssh-agent
1+
FROM jenkins/ssh-agent:7.1.0-jdk21 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:7.0.0-jdk21 as ssh-agent
1+
FROM jenkins/ssh-agent:7.1.0-jdk21 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 && \

0 commit comments

Comments
 (0)