Skip to content

Commit

Permalink
ci: fix PATH issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tzdybal committed Sep 18, 2024
1 parent c82ed55 commit 49f54f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ jobs:
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- run: echo "$GITHUB_WORKSPACE/go/bin" >> $GITHUB_PATH
- name: set up go
uses: actions/setup-go@v5
with:
go-version: ${{ inputs.go-version }}
- run: make proto-gen
- run: make proto-lint
5 changes: 4 additions & 1 deletion .github/workflows/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- run: echo "$GITHUB_WORKSPACE/go/bin" >> $GITHUB_PATH
- uses: actions/checkout@v4
- name: set up go
uses: actions/setup-go@v5
with:
go-version: ${{ inputs.go-version }}
- name: "Check protobuf generated code matches committed code"
# yamllint disable
run: |
Expand Down

0 comments on commit 49f54f5

Please sign in to comment.