File tree Expand file tree Collapse file tree 15 files changed +46
-46
lines changed Expand file tree Collapse file tree 15 files changed +46
-46
lines changed Original file line number Diff line number Diff line change 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@abae793926ec39a78ab18002bc7fc45bbbd94342
41+ uses : anchore/scan-action@7c05671ae9be166aeb155bad2d7df9121823df32
4242 id : scan
4343 with :
4444 path : " ."
Original file line number Diff line number Diff line change 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.76 .0
26+ uses : updatecli/updatecli-action@v2.77 .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
Original file line number Diff line number Diff line change 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-01-15-08-55-28
4+ FROM gitpod/workspace-full:2025-02-05-18-29-22
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:
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ services:
6262 timeout : 10s
6363 retries : 5
6464 default_agent :
65- image : jenkins/ssh-agent:6.7 .0
65+ image : jenkins/ssh-agent:6.9 .0
6666 container_name : desktop-jenkins_agent-1
6767 profiles :
6868 - default
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ services:
108108 # The healthcheck command for each agent checks if the authorized_keys file exists in the /home/jenkins/.ssh directory.
109109 # The /home/jenkins/.ssh directory in each agent container is mapped to the agent-ssh-dir volume on the host.
110110 default_agent :
111- image : jenkins/ssh-agent:6.7 .0
111+ image : jenkins/ssh-agent:6.9 .0
112112 container_name : desktop-jenkins_agent-1
113113 profiles :
114114 - default
Original file line number Diff line number Diff line change 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.479.3
4+ ARG JENKINS_VERSION=2.492.1
55
66# We then use the official Jenkins image with the specified version as our base image.
77FROM jenkins/jenkins:"${JENKINS_VERSION}"
Original file line number Diff line number Diff line change 11# This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.
22
33# We start from the Debian 'bookworm' image dated 2023-11-20.
4- FROM debian:bookworm-20241223 -slim as prepare-stage
4+ FROM debian:bookworm-20250113 -slim as prepare-stage
55
66# Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
77COPY *sh /usr/local/bin/
Original file line number Diff line number Diff line change 1- FROM jenkins/ssh-agent:6.7 .0 as ssh-agent
1+ FROM jenkins/ssh-agent:6.9 .0 as ssh-agent
22
33# ca-certificates because curl uses certificates from ca-certificates
44RUN apt-get update && apt-get install -y --no-install-recommends adb build-essential ca-certificates curl file git python3 python3-pip unzip
Original file line number Diff line number Diff line change 1- FROM jenkins/ssh-agent:6.7 .0 as ssh-agent
1+ FROM jenkins/ssh-agent:6.9 .0 as ssh-agent
22
33# ca-certificates because curl uses certificates from ca-certificates
44RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \
55 rm -rf /var/lib/apt/lists/*
66
77# Now time to install golang
8- ARG GOLANG_VERSION=1.23.5
8+ ARG GOLANG_VERSION=1.23.6
99ARG TARGETARCH
1010ENV ARCHITECTURE=$TARGETARCH
1111
Original file line number Diff line number Diff line change 1- FROM jenkins/ssh-agent:6.7 .0 as ssh-agent
1+ FROM jenkins/ssh-agent:6.9 .0 as ssh-agent
22
33# ca-certificates because curl uses certificates from ca-certificates
44RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates curl && apt-get clean && \
You can’t perform that action at this time.
0 commit comments