Skip to content

Commit 27887af

Browse files
committed
upgrade python to 3.12.4 and upgrade base images
upgrade tflint
1 parent 1188837 commit 27887af

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- uses: terraform-linters/setup-tflint@v4
6767
name: Setup TFLint
6868
with:
69-
tflint_version: v0.50.3
69+
tflint_version: v0.51.1
7070

7171
- name: Init TFLint
7272
run: cd ${{ env.TF_DIR }} && tflint --init

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tflint 0.50.3
1+
tflint 0.51.1

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG AL_PROVIDED_VERSION=al2023.2024.04.24.10
1+
ARG AL_PROVIDED_VERSION=al2023.2024.06.14.16
22
ARG ARCH=x86_64
33
FROM public.ecr.aws/lambda/provided:${AL_PROVIDED_VERSION}-${ARCH} as base
44
RUN dnf -y update && \
@@ -10,7 +10,7 @@ RUN dnf -y update && \
1010
dnf -y install gcc openssl-devel bzip2-devel libffi-devel xz-devel zlib-devel tar xz && \
1111
dnf clean all
1212

13-
ARG PYTHON_VERSION=3.12.3
13+
ARG PYTHON_VERSION=3.12.4
1414

1515
RUN cd "$(mktemp -d)" && \
1616
curl -O https://www.python.org/ftp/python/${PYTHON_VERSION}/Python-${PYTHON_VERSION}.tar.xz && \

infra/tf/.tflint.hcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugin "aws" {
22
enabled = true
3-
version = "0.30.0"
3+
version = "0.32.0"
44
source = "github.com/terraform-linters/tflint-ruleset-aws"
5-
}
5+
}

simple-example/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# based on this example
22
# https://github.com/aws/aws-lambda-python-runtime-interface-client/blob/970e9c1d2613e0ce9c388547c76ac30992ad0e96/README.md
33

4-
FROM public.ecr.aws/docker/library/python:3.12.3-slim-bookworm as build-image
4+
FROM public.ecr.aws/docker/library/python:3.12.4-slim-bookworm as build-image
55

66
# Install aws-lambda-cpp build dependencies (for awslambdaric)
77
RUN apt-get update && \
@@ -26,7 +26,7 @@ RUN python3 -m pip install -U --no-cache-dir pip setuptools wheel && \
2626
--target /src \
2727
awslambdaric boto3
2828

29-
FROM public.ecr.aws/docker/library/python:3.12.3-slim-bookworm
29+
FROM public.ecr.aws/docker/library/python:3.12.4-slim-bookworm
3030

3131
WORKDIR /src
3232

0 commit comments

Comments
 (0)