Update helm charts #2
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: Update helm charts | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| update-helm-charts: | |
| name: Update neuvector charts | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # for updatecli to update the repository | |
| pull-requests: write # for updatecli to create a PR | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| with: | |
| persist-credentials: false | |
| - name: Install Updatecli in the runner | |
| uses: updatecli/updatecli-action@5bda7da77bf4d181bce5f807d73d832b62062acf # v3.3.0 | |
| - name: Update neuvector charts | |
| env: | |
| UPDATECLI_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| UPDATECLI_GITHUB_OWNER: ${{ github.repository_owner }} | |
| UPDATECLI_GITHUB_BRANCH: ${{ github.ref_name }} | |
| run: "updatecli compose apply --file updatecli/updatecli-compose.release.yaml" |