Skip to content

Commit f85a62d

Browse files
authored
ci: Update various github action versions (#19)
1 parent f7bace4 commit f85a62d

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/actions/publish-docs/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
runs:
99
using: composite
1010
steps:
11-
- uses: launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.1
11+
- uses: launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.2
1212
name: 'Publish to Github pages'
1313
with:
1414
docs_path: docs

.github/workflows/release-please.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,29 +19,25 @@ jobs:
1919
- 6379:6379
2020

2121
steps:
22-
- uses: google-github-actions/release-please-action@v3
22+
- uses: googleapis/release-please-action@v4
2323
id: release
24-
with:
25-
command: manifest
26-
token: ${{secrets.GITHUB_TOKEN}}
27-
default-branch: main
2824

2925
- uses: actions/checkout@v4
30-
if: ${{ steps.release.outputs.releases_created }}
26+
if: ${{ steps.release.outputs.releases_created == 'true' }}
3127
with:
3228
fetch-depth: 0 # If you only need the current version keep this.
3329

3430
- name: Build and Test
35-
if: ${{ steps.release.outputs.releases_created }}
31+
if: ${{ steps.release.outputs.releases_created == 'true' }}
3632
uses: ./.github/actions/ci
3733
with:
3834
token: ${{ secrets.GITHUB_TOKEN }}
3935

4036
- name: Build documentation
41-
if: ${{ steps.release.outputs.releases_created }}
37+
if: ${{ steps.release.outputs.releases_created == 'true' }}
4238
uses: ./.github/actions/build-docs
4339

4440
- uses: ./.github/actions/publish-docs
45-
if: ${{ steps.release.outputs.releases_created }}
41+
if: ${{ steps.release.outputs.releases_created == 'true' }}
4642
with:
4743
token: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)