Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Deploy to ECR and Lambda

on:
push:
branches: [ "main" ]
branches: ["main"]
pull_request:

permissions:
Expand All @@ -19,10 +19,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v5
with:
aws-region: ${{ secrets.AWS_REGION }}
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/GitHubActionsAccess
Expand Down Expand Up @@ -57,16 +57,16 @@ jobs:
cache-to: type=gha,mode=max
provenance: false

- uses: actions/cache@v4
- uses: actions/cache@v5
name: Cache TFLint plugin dir
with:
path: ~/.tflint.d/plugins
key: ${{ runner.os }}-tflint-${{ hashFiles('**/.tflint.hcl') }}

- uses: terraform-linters/setup-tflint@v4
- uses: terraform-linters/setup-tflint@v6
name: Setup TFLint
with:
tflint_version: v0.51.2
tflint_version: v0.60.0

- name: Init TFLint
run: cd ${{ env.TF_DIR }} && tflint --init
Expand All @@ -79,15 +79,15 @@ jobs:

- uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.8.5
terraform_version: 1.14.3

- name: Config Terraform plugin cache
run: |
echo 'plugin_cache_dir="$HOME/.terraform.d/plugin-cache"' >~/.terraformrc
mkdir --parents ~/.terraform.d/plugin-cache

- name: Cache Terraform
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.terraform.d/plugin-cache
Expand Down
1 change: 0 additions & 1 deletion .tool-versions

This file was deleted.

47 changes: 17 additions & 30 deletions infra/tf/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion infra/tf/.tflint.hcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugin "aws" {
enabled = true
version = "0.32.0"
version = "0.45.0"
source = "github.com/terraform-linters/tflint-ruleset-aws"
}
2 changes: 1 addition & 1 deletion infra/tf/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.66.0"
version = "6.28.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
"config:recommended"
]
}
Loading