Skip to content

Commit

Permalink
Merge pull request #154 from chivalryq/fix/install
Browse files Browse the repository at this point in the history
Fix: install fail for invalid Host header
  • Loading branch information
wangyikewxgm authored Jul 28, 2023
2 parents aa3d7b9 + 089320f commit 9849282
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install dependencies
uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.20.5"
- name: Get matrix
id: get_matrix
run: |
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Install dependencies
uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.20.5"
- name: Install ginkgo
run: go install github.com/onsi/ginkgo/ginkgo@v1.16.5
- uses: actions/download-artifact@v3
Expand All @@ -71,7 +71,7 @@ jobs:
- name: Install dependencies
uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.20.5"
- name: Install ginkgo
run: go install github.com/onsi/ginkgo/ginkgo@v1.16.5
- uses: actions/download-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.20.5"
- name: Get release
id: get_release
uses: bruceadams/get-release@v1.2.2
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include makefiles/dependency.mk

K3S_VERSION ?= v1.24.8+k3s1
K3S_VERSION ?= v1.27.2+k3s1
STATIC_DIR := pkg/resources/static
VELA_VERSION ?= v1.9.4
VELAUX_VERSION ?= v1.9.2
Expand Down
2 changes: 1 addition & 1 deletion pkg/cluster/k3d.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ type k3dSetupOptions struct {

const (
// K3dImageTag is image tag of k3d
K3dImageTag = "v1.24.8-k3s1"
K3dImageTag = "v1.27.2-k3s1"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/utils/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ func Cleanup() error {
// InfoBytes is a helper function to print a byte array
func InfoBytes(b []byte) {
if len(b) != 0 {
Info(string(b))
Infof(string(b))
}
}

Expand Down

0 comments on commit 9849282

Please sign in to comment.