Skip to content

Commit

Permalink
attempt to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
cjlapao committed Sep 5, 2024
1 parent aa43dd3 commit f05f362
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Pull Request

on:
pull_request:
branches:
branches:
- main

jobs:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
go test -coverprofile coverage.txt -covermode count -v ./...
gocov convert coverage.txt | gocov-xml > ../cobertura-coverage.xml
- name: Upload Code Coverage
uses: actions/upload-artifact@v2
with:
Expand All @@ -55,10 +55,10 @@ jobs:
hide_complexity: false
indicators: true
output: both
thresholds: '40 80'
thresholds: "40 80"

- name: Add Coverage PR Comment
if: false
if: false
uses: marocchino/sticky-pull-request-comment@v2
with:
recreate: true
Expand All @@ -67,14 +67,14 @@ jobs:
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: '-no-fail -fmt sarif -out results.sarif ./...'
args: "-no-fail -fmt sarif -out results.sarif ./..."

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif

- name: Build Helm Chart
run: |
helm lint ./helm
make build-helm-chart
make build-helm-chart

0 comments on commit f05f362

Please sign in to comment.