Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
- chore: fix GitHub Action's working directory as SentryFlow
  • Loading branch information
isu-kim committed Feb 27, 2024
1 parent 0c47508 commit 644741d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-test-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Check go-fmt
run: make gofmt
working-directory: sentryflow
working-directory: SentryFlow

go-lint-sentryflow:
runs-on: ubuntu-20.04
Expand All @@ -30,7 +30,7 @@ jobs:

- name: Check Golint
run: make golint
working-directory: sentryflow
working-directory: SentryFlow

go-sec-sentryflow:
runs-on: ubuntu-20.04
Expand All @@ -43,7 +43,7 @@ jobs:

- name: Run Gosec Security Scanner
run: make gosec
working-directory: sentryflow
working-directory: SentryFlow

license:
runs-on: ubuntu-20.04
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sentryflow-pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fi
- name: Build SentryFlow Docker Image
working-directory: ./sentryflow
working-directory: ./SentryFlow
run: |
make TAG=${{ steps.tag.outputs.tag }} image
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sentryflow-release-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fi
- name: Build SentryFlow Docker Image
working-directory: ./sentryflow
working-directory: ./SentryFlow
run: |
make TAG=${{ steps.tag.outputs.tag }} image
Expand Down

0 comments on commit 644741d

Please sign in to comment.