-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Update various github action versions (#65)
- Loading branch information
Showing
2 changed files
with
6 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,7 @@ runs: | |
|
||
- name: Publish to GitHub pages | ||
if: ${{ inputs.dry_run == 'false' }} | ||
uses: launchdarkly/gh-actions/actions/[email protected].1 | ||
uses: launchdarkly/gh-actions/actions/[email protected].2 | ||
with: | ||
docs_path: helm-repo | ||
github_token: ${{ inputs.token }} | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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 }} |