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

Bumping up kube-burner to v1.13.0 #175

Merged
merged 3 commits into from
Jan 27, 2025
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
7 changes: 2 additions & 5 deletions .github/workflows/builders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,10 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false

- name: Set up Go 1.21.1
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: 1.21.1

- name: Set up Go environment
run: go env -w GOPROXY=direct
go-version: 1.23

- name: Build code
run: make build
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/gorelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,10 @@ jobs:
fetch-depth: 0 # See: https://goreleaser.com/ci/actions/
persist-credentials: false

- name: Set up Go 1.21.1
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: 1.21.1

- name: Set up Go environment
run: go env -w GOPROXY=direct
go-version: 1.23

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@master
Expand Down
9 changes: 4 additions & 5 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@ jobs:
ref: ${{ github.event.pull_request.head.sha }}
persist-credentials: false

- name: Set up Go environment
run: go env -w GOPROXY=direct

- name: Update Go module dependencies
run: go mod tidy
- name: Set up Go 1.23
uses: actions/setup-go@v5
with:
go-version: 1.23

- name: Install pre-commit
run: pip install pre-commit
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ toolchain go1.22.3
require (
github.com/cloud-bulldozer/go-commons v1.0.19
github.com/google/uuid v1.6.0
github.com/kube-burner/kube-burner v1.12.1
github.com/kube-burner/kube-burner v1.13.0
github.com/openshift/api v0.0.0-20240527133614-ba11c1587003
github.com/openshift/client-go v0.0.0-20240821135114-75c118605d5f
github.com/praserx/ipconv v1.2.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -248,8 +248,8 @@ github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/kube-burner/kube-burner v1.12.1 h1:NQE6d4/pnZwLLDORZzh8C5xRaR8Bpc6/Xr6IY4jiQT4=
github.com/kube-burner/kube-burner v1.12.1/go.mod h1:IO4N1+LbS1e95QpeE273qghGq933Rwz+s1Xwn8roiSc=
github.com/kube-burner/kube-burner v1.13.0 h1:rTBuXJn+UVZYPcxJnK9UA0lY4ICq7k4gC/UtFh+yhs0=
github.com/kube-burner/kube-burner v1.13.0/go.mod h1:IO4N1+LbS1e95QpeE273qghGq933Rwz+s1Xwn8roiSc=
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0 h1:nHHjmvjitIiyPlUHk/ofpgvBcNcawJLtf4PYHORLjAA=
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.2.0/go.mod h1:YBCo4DoEeDndqvAn6eeu0vWM7QdXmHEeI9cFWplmBys=
github.com/ledongthuc/pdf v0.0.0-20220302134840-0c2507a12d80/go.mod h1:imJHygn/1yfhB7XSJJKlFZKl/J+dCPAknuiaGOshXAs=
Expand Down
Loading