Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion .github/actions/tf-plan-apply/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ inputs:
terraform_version:
description: "Terraform version to use"
required: false
default: "1.14.3"
default: "1.14.5"

working_directory:
description: "Terraform working directory"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/automated-deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.14.3
terraform_version: 1.14.5
terraform_wrapper: true

- name: Initialise Terraform
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/base-cleanup-lambda-edge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
if: env.DISTRIBUTION_ID != ''
run: |
python3 -m venv ./venv
./venv/bin/pip3 install --upgrade pip boto3==1.33.11
./venv/bin/pip3 install --upgrade pip boto3==1.42.1

- name: Remove Lambda@Edge & CloudFront Associations
if: env.DISTRIBUTION_ID != ''
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/base-cleanup-workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: |
python3 -m venv ./venv
./venv/bin/pip3 install --upgrade pip
./venv/bin/pip3 install boto3==1.33.11
./venv/bin/pip3 install boto3==1.42.1

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-daily-health-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.14.3
terraform_version: 1.14.5
terraform_wrapper: false

- name: Initialise Terraform
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-tear-down-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.14.3
terraform_version: 1.14.5
terraform_wrapper: false

- name: Initialise Terraform
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.14.3
terraform_version: 1.14.5
terraform_wrapper: false

- name: Initialise Terraform
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.14.3
terraform_version: 1.14.5
terraform_wrapper: false

- name: Initialise Terraform
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tear-down-sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.14.3
terraform_version: 1.14.5

- name: Initialise Terraform
run: terraform init -backend-config=${{ vars.TF_BACKEND_FILE }}
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.14.3
terraform_version: 1.14.5

- name: Initialise Terraform
run: terraform init -backend-config=bucket=ndr-dev-terraform-state-${{ secrets.AWS_ACCOUNT_ID }}
Expand Down
Loading