From 858407d0831933afa2fc5afd33ad08897d443080 Mon Sep 17 00:00:00 2001 From: Sean Wesenberg Date: Fri, 13 Oct 2023 14:16:47 -0500 Subject: [PATCH] ci: dep upgrade --- .github/workflows/publish-helm.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-helm.yaml b/.github/workflows/publish-helm.yaml index 1290d66..a0f1102 100644 --- a/.github/workflows/publish-helm.yaml +++ b/.github/workflows/publish-helm.yaml @@ -11,12 +11,10 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Helm - uses: azure/setup-helm@v1 - with: - version: '3.13.1' + uses: azure/setup-helm@v3 - name: Lint and Package Helm Chart run: | @@ -24,8 +22,9 @@ jobs: helm package . -d ./dist - name: Publish Helm Chart to GitHub Packages - uses: helm/chart-releaser-action@v1.2.0 + uses: helm/chart-releaser-action@v1.5.0 + env: + CR_TOKEN: "${{ secrets.GHCR_PAT }}" with: charts_dir: dist charts_repo_url: https://${{ secrets.TARGET_ORG }}.github.io/optlive-showcase-app - token: ${{ secrets.GHCR_PAT }}