fix: require aws provider 4.9.0 or better due to s3 bucket deletion issue #356
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pre-commit | |
on: | |
pull_request: | |
jobs: | |
common: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: pre-commit | |
uses: ./.github/actions/pre-commit | |
with: | |
check-type: common | |
terraform: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: pre-commit | |
uses: ./.github/actions/pre-commit | |
with: | |
check-type: terraform | |
golang: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: pre-commit | |
uses: ./.github/actions/pre-commit | |
with: | |
check-type: golang | |
renovate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: pre-commit | |
uses: ./.github/actions/pre-commit | |
with: | |
check-type: renovate |