Skip to content

Commit

Permalink
fix: the second go setup conditional in go-test
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh authored Dec 4, 2024
1 parent 34c04dd commit b759b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
echo "GORACEFLAGS=-v $GORACEFLAGS" >> $GITHUB_ENV
- name: Set up the Go version read from the go.mod file
uses: actions/setup-go@v5
if: steps.go.outputs.version == steps.stable.outputs.go-version && inputs.go-cache == 'false'
if: steps.go.outputs.version != steps.stable.outputs.go-version || inputs.go-cache == 'false'
with:
go-version: ${{ steps.go.outputs.version }}
cache: ${{ inputs.go-cache }}
Expand Down

0 comments on commit b759b04

Please sign in to comment.