mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 13:41:19 -05:00
deps(docker): bump python in the docker-base-images group
Some checks failed
Build and Test / Set build metadata (push) Has been cancelled
Build and Test / Build test suite matrix (push) Has been cancelled
Build and Test / preview-release-notes (push) Has been cancelled
Lint commit / commitlint (push) Has been cancelled
Build and Test / Build and Test (push) Has been cancelled
Build and Test / Test the Super-linter GitHub Action (push) Has been cancelled
Build and Test / Run test cases (push) Has been cancelled
Build and Test / Check if all the tests passed (push) Has been cancelled
Some checks failed
Build and Test / Set build metadata (push) Has been cancelled
Build and Test / Build test suite matrix (push) Has been cancelled
Build and Test / preview-release-notes (push) Has been cancelled
Lint commit / commitlint (push) Has been cancelled
Build and Test / Build and Test (push) Has been cancelled
Build and Test / Test the Super-linter GitHub Action (push) Has been cancelled
Build and Test / Run test cases (push) Has been cancelled
Build and Test / Check if all the tests passed (push) Has been cancelled
Bumps the docker-base-images group with 1 update: python. Updates `python` from 3.12.7-alpine3.20 to 3.13.0-alpine3.20 --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-minor dependency-group: docker-base-images ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
b2d0953bfc
commit
81a5e2638f
1 changed files with 5 additions and 5 deletions
10
Dockerfile
10
Dockerfile
|
@ -32,7 +32,7 @@ FROM mcr.microsoft.com/dotnet/sdk:9.0.100-alpine3.20 AS dotnet-sdk
|
||||||
FROM mcr.microsoft.com/powershell:7.4-alpine-3.17 AS powershell
|
FROM mcr.microsoft.com/powershell:7.4-alpine-3.17 AS powershell
|
||||||
FROM composer/composer:2.8.2 AS php-composer
|
FROM composer/composer:2.8.2 AS php-composer
|
||||||
|
|
||||||
FROM python:3.12.7-alpine3.20 AS clang-format
|
FROM python:3.13.0-alpine3.20 AS clang-format
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
build-base \
|
build-base \
|
||||||
|
@ -59,7 +59,7 @@ RUN cmake \
|
||||||
&& ninja clang-format \
|
&& ninja clang-format \
|
||||||
&& mv /tmp/llvm-project/llvm/build/bin/clang-format /usr/bin
|
&& mv /tmp/llvm-project/llvm/build/bin/clang-format /usr/bin
|
||||||
|
|
||||||
FROM python:3.12.7-alpine3.20 AS python-builder
|
FROM python:3.13.0-alpine3.20 AS python-builder
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
bash
|
bash
|
||||||
|
@ -70,7 +70,7 @@ COPY dependencies/python/ /stage
|
||||||
WORKDIR /stage
|
WORKDIR /stage
|
||||||
RUN ./build-venvs.sh && rm -rfv /stage
|
RUN ./build-venvs.sh && rm -rfv /stage
|
||||||
|
|
||||||
FROM python:3.12.7-alpine3.20 AS npm-builder
|
FROM python:3.13.0-alpine3.20 AS npm-builder
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
bash \
|
bash \
|
||||||
|
@ -101,7 +101,7 @@ COPY TEMPLATES/.tflint.hcl /action/lib/.automation/
|
||||||
# Initialize TFLint plugins so we get plugin versions listed when we ask for TFLint version
|
# 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
|
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.7-alpine3.20 AS lintr-installer
|
FROM python:3.13.0-alpine3.20 AS lintr-installer
|
||||||
|
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
bash \
|
bash \
|
||||||
|
@ -125,7 +125,7 @@ COPY dependencies/composer/composer.json dependencies/composer/composer.lock /ap
|
||||||
RUN composer update \
|
RUN composer update \
|
||||||
&& composer audit
|
&& composer audit
|
||||||
|
|
||||||
FROM python:3.12.7-alpine3.20 AS base_image
|
FROM python:3.13.0-alpine3.20 AS base_image
|
||||||
|
|
||||||
LABEL com.github.actions.name="Super-Linter" \
|
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." \
|
com.github.actions.description="Super-linter is a ready-to-run collection of linters and code analyzers, to help validate your source code." \
|
||||||
|
|
Loading…
Reference in a new issue