deps(docker): bump python from 3.12.1-alpine3.19 to 3.12.2-alpine3.19 (#5259)

Bumps python from 3.12.1-alpine3.19 to 3.12.2-alpine3.19.

---
updated-dependencies:
- dependency-name: python
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-02-12 22:02:29 +01:00 committed by GitHub
parent 02e9da59ae
commit 07e5032e39
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,7 +28,7 @@ FROM dart:3.2.6-sdk as dart
FROM mcr.microsoft.com/dotnet/sdk:8.0.101-alpine3.19 as dotnet-sdk
FROM mcr.microsoft.com/powershell:7.3-alpine-3.17 as powershell
FROM python:3.12.1-alpine3.19 as clang-format
FROM python:3.12.2-alpine3.19 as clang-format
RUN apk add --no-cache \
build-base \
@ -55,7 +55,7 @@ RUN cmake \
&& ninja clang-format \
&& mv /tmp/llvm-project/llvm/build/bin/clang-format /usr/bin
FROM python:3.12.1-alpine3.19 as python-builder
FROM python:3.12.2-alpine3.19 as python-builder
RUN apk add --no-cache \
bash
@ -66,7 +66,7 @@ COPY dependencies/python/ /stage
WORKDIR /stage
RUN ./build-venvs.sh && rm -rfv /stage
FROM python:3.12.1-alpine3.19 as npm-builder
FROM python:3.12.2-alpine3.19 as npm-builder
RUN apk add --no-cache \
bash \
@ -97,7 +97,7 @@ COPY TEMPLATES/.tflint.hcl /action/lib/.automation/
# Initialize TFLint plugins so we get plugin versions listed when we ask for TFLint version
RUN tflint --init -c /action/lib/.automation/.tflint.hcl
FROM python:3.12.1-alpine3.19 as lintr-installer
FROM python:3.12.2-alpine3.19 as lintr-installer
RUN apk add --no-cache \
bash \
@ -114,7 +114,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.1-alpine3.19 as base_image
FROM python:3.12.2-alpine3.19 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." \