Skip to content

Commit

Permalink
fix: sanitise path
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Nov 7, 2024
1 parent afedcd6 commit 2352d19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-lint-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5
with:
go-version-file: '${{ inputs.project-directory }}/go.mod'
cache-dependency-path: '${{ inputs.project-directory }}/go.sum'
go-version-file: "${{ inputs.project-directory == '' && '.' || inputs.project-directory }}/go.mod"
cache-dependency-path: "${{ inputs.project-directory == '' && '.' || inputs.project-directory }}/go.sum"
id: go

- name: golangci-lint
Expand Down

0 comments on commit 2352d19

Please sign in to comment.