From 7d5fe952b66ce0a1e5de8fab99bd7b73c40d5780 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Mon, 12 Aug 2024 13:06:46 -0400 Subject: [PATCH 1/2] Update LD actions --- .github/actions/publish-docs/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/publish-docs/action.yml b/.github/actions/publish-docs/action.yml index fb5a1c4e..258b65b2 100644 --- a/.github/actions/publish-docs/action.yml +++ b/.github/actions/publish-docs/action.yml @@ -8,7 +8,7 @@ inputs: runs: using: composite steps: - - uses: launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.1 + - uses: launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.2 name: 'Publish to Github pages' with: docs_path: docs From 1e154c5f3b175ba700bfb14d974de9d116bbb500 Mon Sep 17 00:00:00 2001 From: Matthew Keeler Date: Mon, 12 Aug 2024 13:07:25 -0400 Subject: [PATCH 2/2] Update release-please --- .github/workflows/release-please.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 5dbadfe4..7fd3274a 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -23,7 +23,7 @@ jobs: LD_INCLUDE_INTEGRATION_TESTS: 1 steps: - - uses: google-github-actions/release-please-action@v3 + - uses: googleapis/release-please-action@v4 id: release with: command: manifest @@ -31,21 +31,21 @@ jobs: 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. - name: Build and Test - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs.releases_created == 'true' }} uses: ./.github/actions/ci with: token: ${{ secrets.GITHUB_TOKEN }} - name: Build documentation - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs.releases_created == 'true' }} uses: ./.github/actions/build-docs - uses: ./.github/actions/publish-docs - if: ${{ steps.release.outputs.releases_created }} + if: ${{ steps.release.outputs.releases_created == 'true' }} with: token: ${{ secrets.GITHUB_TOKEN }}