From c99307e1253c491bc318dfea3e27fdbef748cbb1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Aug 2024 14:52:44 +0000 Subject: [PATCH] deps(docker): bump python from 3.12.4-alpine3.20 to 3.12.5-alpine3.20 (#6005) Bumps python from 3.12.4-alpine3.20 to 3.12.5-alpine3.20. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7d450509..ed4358a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ FROM dart:3.4.4-sdk AS dart FROM mcr.microsoft.com/dotnet/sdk:8.0.303-alpine3.20 AS dotnet-sdk FROM mcr.microsoft.com/powershell:7.4-alpine-3.17 AS powershell -FROM python:3.12.4-alpine3.20 AS clang-format +FROM python:3.12.5-alpine3.20 AS clang-format RUN apk add --no-cache \ build-base \ @@ -58,7 +58,7 @@ RUN cmake \ && ninja clang-format \ && mv /tmp/llvm-project/llvm/build/bin/clang-format /usr/bin -FROM python:3.12.4-alpine3.20 AS python-builder +FROM python:3.12.5-alpine3.20 AS python-builder RUN apk add --no-cache \ bash @@ -69,7 +69,7 @@ COPY dependencies/python/ /stage WORKDIR /stage RUN ./build-venvs.sh && rm -rfv /stage -FROM python:3.12.4-alpine3.20 AS npm-builder +FROM python:3.12.5-alpine3.20 AS npm-builder RUN apk add --no-cache \ bash \ @@ -100,7 +100,7 @@ COPY TEMPLATES/.tflint.hcl /action/lib/.automation/ # Initialize TFLint plugins so we get plugin versions listed when we ask for TFLint version RUN --mount=type=secret,id=GITHUB_TOKEN GITHUB_TOKEN=$(cat /run/secrets/GITHUB_TOKEN) tflint --init -c /action/lib/.automation/.tflint.hcl -FROM python:3.12.4-alpine3.20 AS lintr-installer +FROM python:3.12.5-alpine3.20 AS lintr-installer RUN apk add --no-cache \ bash \ @@ -117,7 +117,7 @@ FROM powershell AS powershell-installer # when copying PowerShell stuff in the main image RUN echo "${PS_INSTALL_FOLDER}" > /tmp/PS_INSTALL_FOLDER -FROM python:3.12.4-alpine3.20 AS base_image +FROM python:3.12.5-alpine3.20 AS base_image LABEL com.github.actions.name="Super-Linter" \ com.github.actions.description="Super-linter is a ready-to-run collection of linters and code analyzers, to help validate your source code." \