Skip to content

Commit 5189966

Browse files
authored
ci: bump to go 1.23 (#540)
* feat: bump to go 1.23 in ci * chore: remove `Dockerfile`
1 parent 0113c13 commit 5189966

File tree

4 files changed

+2
-31
lines changed

4 files changed

+2
-31
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313
env:
1414
ARCH: "linux-x86_64"
1515

16-
GO_VERSION: "1.22" # https://go.dev/dl/
16+
GO_VERSION: "1.23" # https://go.dev/dl/
1717
STRINGER_VERSION: "0.31.0" # https://pkg.go.dev/golang.org/x/tools/cmd/stringer?tab=versions
1818

1919
PROTOC_VERSION: "29.3" # https://github.com/protocolbuffers/protobuf/releases

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
contents: write
1111

1212
env:
13-
GO_VERSION: "1.22"
13+
GO_VERSION: "1.23"
1414

1515
jobs:
1616
manual-release:

Dockerfile

-25
This file was deleted.

Makefile

-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,6 @@ $(BUILD_DIR): ## Create the build folder.
2929
build: $(BUILD_DIR) ## Build go binary.
3030
go build -ldflags "$(VERSION_FLAGS)" -o $(BUILD_DIR)/$(BIN_NAME) main.go
3131

32-
.PHONY: build-docker
33-
build-docker: ## Builds a docker image with the polycli binary
34-
docker build -t polycli -f ./Dockerfile .
35-
3632
.PHONY: install
3733
install: build ## Install the go binary.
3834
$(RM) $(INSTALL_DIR)/$(BIN_NAME)

0 commit comments

Comments
 (0)