chore(deps): update dependency cilium/cilium to v1.18.5 #735
This file contains hidden or 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: Terraform docs and formatting | |
| on: | |
| pull_request: {} | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| formatting: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: terraform fmt | |
| uses: dflook/terraform-fmt-check@10eaa13fa61437aa51be2d12fafe95f152e3512d | |
| with: | |
| path: . | |
| - name: terraform fmt | |
| uses: dflook/terraform-fmt-check@10eaa13fa61437aa51be2d12fafe95f152e3512d | |
| with: | |
| path: example | |
| docs: | |
| needs: formatting | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| with: | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| - name: Render terraform docs inside the README.md and push changes back to PR branch | |
| uses: terraform-docs/gh-actions@6de6da0cefcc6b4b7a5cbea4d79d97060733093c | |
| with: | |
| working-dir: . | |
| output-file: README.md | |
| output-method: inject | |
| output-format: markdown table | |
| indention: 3 | |
| git-push: "true" | |
| - name: Render terraform docs inside the README.md and push changes back to PR branch | |
| uses: terraform-docs/gh-actions@6de6da0cefcc6b4b7a5cbea4d79d97060733093c | |
| with: | |
| working-dir: example/ | |
| output-file: README.md | |
| output-method: inject | |
| output-format: markdown table | |
| indention: 3 | |
| git-push: "true" |