Bump actions/dependency-review-action from 4.2.4 to 4.2.5 #2
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
--- | |
# This workflow uses actions that are not certified by GitHub. They are provided | |
# by a third-party and are governed by separate terms of service, privacy | |
# policy, and support documentation. | |
name: Generate Terraform Docs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
name: Generate README documentation | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout Source | |
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
with: | |
ref: main | |
- name: Render terraform docs and push changes back to PR | |
uses: terraform-docs/gh-actions@v1 | |
with: | |
git-commit-message: "docs: Generate documentation in README.md" | |
git-push-sign-off: "true" | |
git-push: "true" | |
output-file: README.md | |
output-method: inject | |
working-dir: . |