From ce7ddf1185a7e63a54c0bab8f5e27508b6ed2f63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 00:41:46 +0000 Subject: [PATCH 1/2] chore(deps): bump python from `f3614d9` to `8f3aba4` Bumps python from `f3614d9` to `8f3aba4`. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f9a7c3a..183a785 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ #checkov:skip=CKV_DOCKER_2 #checkov:skip=CKV_DOCKER_3 -FROM python:3.13-slim@sha256:f3614d98f38b0525d670f287b0474385952e28eb43016655dd003d0e28cf8652 +FROM python:3.13-slim@sha256:8f3aba466a471c0ab903dbd7cb979abd4bda370b04789d25440cc90372b50e04 LABEL com.github.actions.name="contributors" \ com.github.actions.description="GitHub Action that given an organization or repository, produces information about the contributors over the specified time period." \ com.github.actions.icon="users" \ From 8fbe2f362729f33c4c16ef790921d2d972cddd02 Mon Sep 17 00:00:00 2001 From: "JM (Jason Meridth)" Date: Mon, 24 Mar 2025 06:44:04 -0500 Subject: [PATCH 2/2] fix: Update git version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 183a785..f39ad3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ COPY requirements.txt *.py /action/workspace/ RUN python3 -m pip install --no-cache-dir -r requirements.txt \ && apt-get -y update \ - && apt-get -y install --no-install-recommends git=1:2.39.5-0+deb12u1 \ + && apt-get -y install --no-install-recommends git=1:2.39.5-0+deb12u2 \ && rm -rf /var/lib/apt/lists/* CMD ["/action/workspace/contributors.py"]