Skip to content

Commit

Permalink
Fix incorrect syntax to set GOVERSION in GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
elct9620 authored and tjjh89017 committed Aug 8, 2024
1 parent c115880 commit cf6b91f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: {{ env.GOVERSION }}
go-version: ${{ env.GOVERSION }}
cache: false
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
Expand All @@ -32,7 +32,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: {{ env.GOVERSION }}
go-version: ${{ env.GOVERSION }}
- name: Build
run: go build -v ./...
env:
Expand Down

0 comments on commit cf6b91f

Please sign in to comment.