Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Go 1.24
- name: Set up Go 1.25
uses: actions/setup-go@v5
with:
go-version: '1.24'
go-version: '1.25'
id: go

- name: Set up QEMU
Expand All @@ -49,10 +49,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Go 1.24
- name: Set up Go 1.25
uses: actions/setup-go@v5
with:
go-version: '1.24'
go-version: '1.25'
id: go

- name: Create Kubernetes ${{ matrix.k8s }} cluster
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dbg
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.


FROM ghcr.io/appscode/dlv:1.24
FROM ghcr.io/appscode/dlv:1.25

FROM {ARG_FROM}

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ TAG := $(VERSION)_$(OS)_$(ARCH)
TAG_PROD := $(TAG)
TAG_DBG := $(VERSION)-dbg_$(OS)_$(ARCH)

GO_VERSION ?= 1.24
GO_VERSION ?= 1.25
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.11.0
CHART_TEST_IMAGE ?= quay.io/helmpack/chart-testing:v3.13.0

OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)
ifeq ($(OS),windows)
Expand Down
Loading