chore(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0 #136
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: helmdocs | |
"on": | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
helmdocs: | |
runs-on: ubuntu-latest | |
if: github.repository == 'promhippie/charts' | |
steps: | |
- name: Checkout source | |
id: source | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.BOT_ACCESS_TOKEN }} | |
fetch-depth: 0 | |
- name: Update readme | |
id: docs | |
uses: docker://jnorwood/helm-docs:v1.14.2 | |
with: | |
entrypoint: helm-docs | |
- name: Commit changes | |
id: commit | |
uses: EndBug/add-and-commit@v9 | |
with: | |
author_name: GitHub Actions | |
author_email: [email protected] | |
add: stable/ | |
message: "docs: automated readme updates [skip ci]" | |
push: true | |
commit: --signoff | |
... |