Skip to content

Commit b969d0d

Browse files
authored
Use Go 1.25 (#21)
Signed-off-by: 1gtm <[email protected]>
1 parent 3a70af6 commit b969d0d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
name: Build
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- name: Set up Go 1.24
21+
- name: Set up Go 1.25
2222
uses: actions/setup-go@v5
2323
with:
24-
go-version: '1.24'
24+
go-version: '1.25'
2525
id: go
2626

2727
- name: Use Node.js 20.x

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v1
1919

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
- name: Prepare git

Dockerfile.dbg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM ghcr.io/appscode/dlv:1.24
15+
FROM ghcr.io/appscode/dlv:1.25
1616

1717
FROM {ARG_FROM}
1818

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ TAG := $(VERSION)_$(OS)_$(ARCH)
7171
TAG_PROD := $(TAG)
7272
TAG_DBG := $(VERSION)-dbg_$(OS)_$(ARCH)
7373

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

7878
OUTBIN = bin/$(BIN)-$(OS)-$(ARCH)
7979
ifeq ($(OS),windows)

0 commit comments

Comments
 (0)