From 1a2eb13929d2172083279447c22a0059e7ba414f Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Wed, 14 Aug 2024 09:47:22 -0400 Subject: [PATCH 1/2] Update LD actions --- .github/actions/publish/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/publish/action.yml b/.github/actions/publish/action.yml index e96db88..5ea1485 100644 --- a/.github/actions/publish/action.yml +++ b/.github/actions/publish/action.yml @@ -40,7 +40,7 @@ runs: - name: Publish to GitHub pages if: ${{ inputs.dry_run == 'false' }} - uses: launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.1 + uses: launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.2 with: docs_path: helm-repo github_token: ${{ inputs.token }} From 6b2fe7cbc2c440d3a01403e7d1e61750c76fbea3 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Wed, 14 Aug 2024 09:48:30 -0400 Subject: [PATCH 2/2] Update release-please --- .github/workflows/release-please.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 0eb114a..a788d88 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -12,27 +12,23 @@ jobs: contents: write # Contents and pull-requests are for release-please to make releases. pull-requests: write steps: - - uses: google-github-actions/release-please-action@v3 + - uses: googleapis/release-please-action@v4 id: release - with: - command: manifest - token: ${{secrets.GITHUB_TOKEN}} - default-branch: main - uses: actions/checkout@v4 - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs.releases_created == 'true' }} with: fetch-depth: 0 # If you only need the current version keep this. - uses: azure/setup-helm@v4.0.0 - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs.releases_created == 'true' }} - name: Run quality control checks - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs.releases_created == 'true' }} uses: ./.github/actions/ci - uses: ./.github/actions/publish - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs.releases_created == 'true' }} with: dry_run: false token: ${{ secrets.GITHUB_TOKEN }}