Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: install fail for invalid Host header #154

Merged
merged 1 commit into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading