Skip to content

Commit f525026

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 9b4c706 + eb32759 commit f525026

File tree

17 files changed

+28
-28
lines changed

17 files changed

+28
-28
lines changed

.github/workflows/anchore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: cd ./dockerfiles/ && docker build . --file Dockerfile --tag localbuild/testimage:latest
3939

4040
- name: Run the Anchore Grype scan action
41-
uses: anchore/scan-action@7c05671ae9be166aeb155bad2d7df9121823df32
41+
uses: anchore/scan-action@2c901ab7378897c01b8efaa2d0c9bf519cc64b9e
4242
id: scan
4343
with:
4444
path: "."

.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.82.0
26+
uses: updatecli/updatecli-action@v2.83.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

.gitpod/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 Gitpod workspace with GitHub CLI installed.
22

33
# We start from the Gitpod full workspace image which includes a broad range of development tools.
4-
FROM gitpod/workspace-full:2025-04-16-08-49-20
4+
FROM gitpod/workspace-full:2025-05-09-11-18-24
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:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ Please let us know the following details when you open an issue:
6767
- The version of docker compose you're using via the `docker compose version` command.
6868

6969
The tutorials have been tested with:
70-
- Docker version `26.1.3`
71-
- Docker Compose version `2.27.1`
70+
- Docker version `28.0.4`
71+
- Docker Compose version `2.35.1`

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:6.14.0-jdk21
66+
image: jenkins/ssh-agent:6.16.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
@@ -111,7 +111,7 @@ services:
111111
# The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory.
112112
# The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host.
113113
default_agent:
114-
image: jenkins/ssh-agent:6.14.0-jdk21
114+
image: jenkins/ssh-agent:6.16.0-jdk21
115115
container_name: desktop-jenkins_agent-1
116116
profiles:
117117
- default

docker-versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
- Docker version 26.1.3, build b72abbb
2-
- Docker Compose version v2.27.1
1+
- Docker version 28.0.4, build b8034c0
2+
- Docker Compose version v2.35.1

dockerfiles/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 server with a specific version and pre-configured settings.
22

33
# We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use.
4-
ARG JENKINS_VERSION=2.492.3
4+
ARG JENKINS_VERSION=2.504.1
55
# We then use the official Jenkins image with the specified version as our base image.
66
FROM jenkins/jenkins:"${JENKINS_VERSION}"-lts-jdk21
77

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.14.0-jdk21 as ssh-agent
1+
FROM jenkins/ssh-agent:6.16.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:6.14.0-jdk21
1+
FROM jenkins/ssh-agent:6.16.0-jdk21
22

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

0 commit comments

Comments
 (0)