Skip to content

Commit

Permalink
Bugfix broken github actions
Browse files Browse the repository at this point in the history
paambaati/codeclimate-action needs to remain at v2.7.5
helm/[email protected] needs to be specific at v1.4.0
fetch-depth: 0 must be specified for the action to do a proper diff

Signed-off-by: Jeremy Ho <[email protected]>
  • Loading branch information
jujaga committed Jul 21, 2022
1 parent 946628e commit f028cac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/charts-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,15 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1
uses: helm/chart-releaser-action@v1.4.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- name: Restore Coverage Results
uses: actions/download-artifact@v2
- name: Publish code coverage
uses: paambaati/codeclimate-action@v3
uses: paambaati/codeclimate-action@v2.7.5
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand Down

0 comments on commit f028cac

Please sign in to comment.