Skip to content

Commit 10cc0c3

Browse files
authored
Merge pull request #388 from dflook/bookworm-really
Build image using debian bookworm
2 parents 75ea432 + 3d03960 commit 10cc0c3

File tree

27 files changed

+27
-27
lines changed

27 files changed

+27
-27
lines changed

docs-gen/environment_variables/TERRAFORM_PRE_RUN.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
The runtime environment for these actions is subject to change in minor version releases. If using this environment variable, specify the minor version of the action to use.
99
10-
The runtime image is currently based on `debian:bullseye`, with the command run using `bash -xeo pipefail`.
10+
The runtime image is currently based on `debian:bookworm`, with the command run using `bash -xeo pipefail`.
1111
1212
For example:
1313

docs/custom_tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ These are the options available to you.
66
## Using the released actions
77

88
The published actions run Terraform/OpenTofu in a container using a pre-prepared image.
9-
The image is based on `debian:bullseye-slim` and is designed to be as small as possible.
9+
The image is based on `debian:bookworm-slim` and is designed to be as small as possible.
1010

1111
It is possible to use the `TERRAFORM_PRE_RUN` environment variable to customise the environment before running Terraform.
1212
The command is run using `bash -xeo pipefail`.

image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ARG VERSION=99.0.0
99
COPY src/ /tmp/src/
1010
COPY setup.py /tmp
1111
RUN sed -i "s|version='.*'|version=\'${VERSION}\'|" /tmp/setup.py \
12-
&& pip install --no-cache-dir /tmp \
12+
&& pip install --break-system-packages --no-cache-dir /tmp \
1313
&& rm -rf /tmp/src /tmp/setup.py
1414

1515
RUN if [ "$FETCH_CHECKSUMS" = "yes" ]; then \

terraform-apply/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ These input values must be the same as any [`dflook/terraform-plan`](https://git
414414

415415
The runtime environment for these actions is subject to change in minor version releases. If using this environment variable, specify the minor version of the action to use.
416416

417-
The runtime image is currently based on `debian:bullseye`, with the command run using `bash -xeo pipefail`.
417+
The runtime image is currently based on `debian:bookworm`, with the command run using `bash -xeo pipefail`.
418418

419419
For example:
420420

terraform-check/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ This is intended to run on a schedule to notify if manual changes to your infras
184184

185185
The runtime environment for these actions is subject to change in minor version releases. If using this environment variable, specify the minor version of the action to use.
186186

187-
The runtime image is currently based on `debian:bullseye`, with the command run using `bash -xeo pipefail`.
187+
The runtime image is currently based on `debian:bookworm`, with the command run using `bash -xeo pipefail`.
188188

189189
For example:
190190

terraform-destroy-workspace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ This action uses the `terraform destroy` command to destroy all resources in a T
205205

206206
The runtime environment for these actions is subject to change in minor version releases. If using this environment variable, specify the minor version of the action to use.
207207

208-
The runtime image is currently based on `debian:bullseye`, with the command run using `bash -xeo pipefail`.
208+
The runtime image is currently based on `debian:bookworm`, with the command run using `bash -xeo pipefail`.
209209

210210
For example:
211211

terraform-destroy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ and [dflook/terraform-apply](https://github.com/dflook/terraform-github-actions/
209209

210210
The runtime environment for these actions is subject to change in minor version releases. If using this environment variable, specify the minor version of the action to use.
211211

212-
The runtime image is currently based on `debian:bullseye`, with the command run using `bash -xeo pipefail`.
212+
The runtime image is currently based on `debian:bookworm`, with the command run using `bash -xeo pipefail`.
213213

214214
For example:
215215

terraform-new-workspace/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Creates a new Terraform workspace. If the workspace already exists, succeeds wit
129129

130130
The runtime environment for these actions is subject to change in minor version releases. If using this environment variable, specify the minor version of the action to use.
131131

132-
The runtime image is currently based on `debian:bullseye`, with the command run using `bash -xeo pipefail`.
132+
The runtime image is currently based on `debian:bookworm`, with the command run using `bash -xeo pipefail`.
133133

134134
For example:
135135

terraform-output/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ Retrieve the root-level outputs from a Terraform configuration.
156156

157157
The runtime environment for these actions is subject to change in minor version releases. If using this environment variable, specify the minor version of the action to use.
158158

159-
The runtime image is currently based on `debian:bullseye`, with the command run using `bash -xeo pipefail`.
159+
The runtime image is currently based on `debian:bookworm`, with the command run using `bash -xeo pipefail`.
160160

161161
For example:
162162

terraform-plan/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ The [dflook/terraform-apply](https://github.com/dflook/terraform-github-actions/
360360

361361
The runtime environment for these actions is subject to change in minor version releases. If using this environment variable, specify the minor version of the action to use.
362362

363-
The runtime image is currently based on `debian:bullseye`, with the command run using `bash -xeo pipefail`.
363+
The runtime image is currently based on `debian:bookworm`, with the command run using `bash -xeo pipefail`.
364364

365365
For example:
366366

0 commit comments

Comments
 (0)