Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps(docker): bump python from 3.12.7-alpine3.20 to 3.13.0-alpine3.20 #230

Merged
merged 1 commit into from
Nov 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0.403-alpine3.20 AS dotnet-sdk
FROM mcr.microsoft.com/powershell:7.4-alpine-3.17 AS powershell
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 \
build-base \
Expand All @@ -59,7 +59,7 @@ RUN cmake \
&& ninja clang-format \
&& 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 \
bash
Expand All @@ -70,7 +70,7 @@ COPY dependencies/python/ /stage
WORKDIR /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 \
bash \
Expand Down Expand Up @@ -102,7 +102,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.7-alpine3.20 AS lintr-installer
FROM python:3.13.0-alpine3.20 AS lintr-installer

RUN apk add --no-cache \
bash \
Expand All @@ -126,7 +126,7 @@ COPY dependencies/composer/composer.json dependencies/composer/composer.lock /ap
RUN composer update \
&& 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="Awesome-Linter" \
com.github.actions.description="Awesome-linter is a ready-to-run collection of linters and code analyzers, to help validate your source code." \
Expand Down
Loading