Skip to content

chore(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0 #136

chore(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0

chore(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0 #136

Workflow file for this run

---
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
...