Skip to content

Commit

Permalink
setup go 1.18
Browse files Browse the repository at this point in the history
go 1.19 build fails - internal bug
  • Loading branch information
jkralik committed Aug 15, 2022
1 parent b6a4033 commit 665b6af
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go 1.18
uses: actions/setup-go@v3
with:
go-version: "^1.18" # The Go version to download (if necessary) and use.
go-version: "1.18" # The Go version to download (if necessary) and use.

- run: go version

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/staticAnalysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Go 1.18
uses: actions/setup-go@v3
with:
go-version: "^1.18" # The Go version to download (if necessary) and use.
go-version: "1.18" # The Go version to download (if necessary) and use.

- run: go version

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-for-fork.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go 1.18
uses: actions/setup-go@v3
with:
go-version: ^1.18
go-version: 1.18

# Checks-out repository under $GITHUB_WORKSPACE
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go 1.18
uses: actions/setup-go@v3
with:
go-version: ^1.18
go-version: 1.18

# Checks-out repository under $GITHUB_WORKSPACE
- name: Checkout
Expand Down

0 comments on commit 665b6af

Please sign in to comment.