Skip to content

Commit b12856f

Browse files
authored
Use Go 1.25 (#16)
Signed-off-by: 1gtm <1gtm@appscode.com> Signed-off-by: Tamal Saha <tamal@appscode.com>
1 parent 7132c46 commit b12856f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
name: Build
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- name: Set up Go 1.24
20+
- name: Set up Go 1.25
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: '1.24'
23+
go-version: '1.25'
2424
id: go
2525

2626
- uses: actions/checkout@v4

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ TAG := $(VERSION)_$(OS)_$(ARCH)
7070
TAG_PROD := $(TAG)
7171
TAG_DBG := $(VERSION)-dbg_$(OS)_$(ARCH)
7272

73-
GO_VERSION ?= 1.24
73+
GO_VERSION ?= 1.25
7474
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)
7575

7676
OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)

http-checker/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ package main
1919
import (
2020
"encoding/json"
2121
"fmt"
22+
"strings"
23+
2224
"go.bytebuilders.dev/license-verifier/apis/licenses/v1alpha1"
2325
"gomodules.xyz/sets"
24-
"strings"
2526
)
2627

2728
const resp = `{

0 commit comments

Comments
 (0)