Skip to content

build(deps): bump the aws-sdk-go group with 76 updates #29968

build(deps): bump the aws-sdk-go group with 76 updates

build(deps): bump the aws-sdk-go group with 76 updates #29968

name: Acceptance Test Linting
on:
push:
branches:
- main
- "release/**"
pull_request:
paths:
- .github/workflows/acctest-terraform-lint.yml
- .ci/.tflint.hcl
- .ci/scripts/validate-terraform.sh
- .ci/tools/go.mod
- go.sum
- 'internal/service/**/*_test.go'
jobs:
terrafmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: go.mod
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- run: cd .ci/tools && go install github.com/katbyte/terrafmt
- run: |
find ./internal/service -type f -name '*_test.go' \
| sort -u \
| xargs -I {} terrafmt diff --check --fmtcompat {}
tflint:
name: Validate Acceptance Tests
runs-on: [custom, linux, xl]
strategy:
matrix:
path: ['[a-f]', '[g-z]']
env:
TEST_FILES_PARTITION: '\./internal/service/${{ matrix.path }}.*/.*_test\.go'
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: go.mod
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
name: Cache plugin dir
continue-on-error: true
timeout-minutes: 2
with:
path: ~/.tflint.d/plugins
key: ${{ runner.os }}-tflint-${{ hashFiles('.ci/.tflint.hcl') }}
- run: cd .ci/tools && go install github.com/katbyte/terrafmt
- run: cd .ci/tools && go install github.com/terraform-linters/tflint
- run: tflint --config .ci/.tflint.hcl --init
- run: echo -n "File count $( find ./internal -type f -regextype egrep -regex ${{ env.TEST_FILES_PARTITION }} | wc -l | xargs )"
- run: |
find ./internal -type f -regextype egrep -regex ${{ env.TEST_FILES_PARTITION }} \
| .ci/scripts/validate-terraform.sh