Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/build-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
submodules: recursive

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ inputs.aws-role-arn }}
aws-region: ${{ inputs.aws-region }}
Expand All @@ -55,7 +55,7 @@ jobs:
mask-password: 'true'

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -64,7 +64,7 @@ jobs:

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: |
ghcr.io/${{ github.repository }}
Expand All @@ -80,10 +80,10 @@ jobs:
# type=raw,value=latest,enable={{is_default_branch}}

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Build, tag, and push image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
push: true
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci-check-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}

Expand All @@ -57,12 +57,12 @@ jobs:
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}

- name: Cache Terraform data
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ inputs.tf-directory }}/.terraform
key: terraform-${{ hashFiles('${{ inputs.tf-directory }}/.terraform.lock.hcl') }}
Expand All @@ -86,12 +86,12 @@ jobs:
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}

- name: Cache Terraform data
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ inputs.tf-directory }}/.terraform
key: terraform-${{ hashFiles('${{ inputs.tf-directory }}/.terraform.lock.hcl') }}
Expand Down Expand Up @@ -122,12 +122,12 @@ jobs:
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}

- name: Cache Terraform data
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ inputs.tf-directory }}/.terraform
key: terraform-${{ hashFiles('${{ inputs.tf-directory }}/.terraform.lock.hcl') }}
Expand All @@ -137,12 +137,12 @@ jobs:
run: terraform init -no-color

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

- name: Cache `tflint` plugins
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.tflint.d/plugins
key: tflint-${{ hashFiles('${{ inputs.tf-directory }}/.tflint.hcl') }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-plan-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Configure AWS Credentials for Monitoring account
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ inputs.aws-role-monitoring-arn }}
aws-region: ${{ inputs.aws-region }}
Expand All @@ -84,12 +84,12 @@ jobs:
key-prefix: ${{ github.event.repository.name }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}

- name: Cache Terraform data
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ inputs.tf-directory }}/.terraform
key: terraform-${{ hashFiles('${{ inputs.tf-directory }}/.terraform.lock.hcl') }}
Expand All @@ -115,7 +115,7 @@ jobs:

- name: Upload Plan Output
if: always() && github.event_name == 'pull_request'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: terraform-plan-${{ inputs.stage }}
path: /tmp/plan_output.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
task-name: ${{ inputs.task-name }}

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ inputs.aws-role-arn }}
aws-region: ${{ inputs.aws-region }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
token: ${{ secrets.PRIVATE_SUBMODULE_ACCESS_TOKEN || github.token }}

- name: Configure AWS Credentials for Monitoring account
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ inputs.aws-role-monitoring-arn }}
aws-region: ${{ inputs.aws-region }}
Expand All @@ -81,12 +81,12 @@ jobs:
key-prefix: ${{ github.event.repository.name }}

- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}

- name: Cache Terraform data
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ inputs.tf-directory }}/.terraform
key: terraform-${{ hashFiles('${{ inputs.tf-directory }}/.terraform.lock.hcl') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ jobs:
submodules: recursive

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Build image to tarball
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
tags: release-image:${{ needs.update_version.outputs.version }}
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
packages: write
steps:
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v6
with:
role-to-assume: ${{ matrix.env.role }}
aws-region: ${{ inputs.aws-region }}
Expand All @@ -129,7 +129,7 @@ jobs:
mask-password: 'true'

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand All @@ -147,7 +147,7 @@ jobs:

- name: Docker meta
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v6
with:
images: |
ghcr.io/${{ github.repository }}
Expand Down
4 changes: 2 additions & 2 deletions examples/sub-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Restore Cargo cache
id: cache-restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
with:
path: |
~/.cargo/bin/
Expand All @@ -69,7 +69,7 @@ jobs:
run: cargo test --test integration

- name: Save Cargo cache
uses: actions/cache/save@v4
uses: actions/cache/save@v6
with:
path: |
~/.cargo/bin/
Expand Down