aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2026-02-09 15:21:43 +0700
committerShulhan <ms@kilabit.info>2026-02-09 15:21:43 +0700
commit9cc27f817a1850692451513732024d18007c4868 (patch)
treeacab3f78d82257d916c11c4b93aeff1eaa64269a
parentc516c2c44df0074f43ff084c7e9e4cf12909dad1 (diff)
downloadpakakeh.go-9cc27f817a1850692451513732024d18007c4868.tar.xz
go.mod: update the Go version to 1.25
This include updating the Go version in actions.
-rw-r--r--.github/workflows/go.yml10
-rw-r--r--go.mod2
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
index fdfef555..a5ac4f4e 100644
--- a/.github/workflows/go.yml
+++ b/.github/workflows/go.yml
@@ -2,21 +2,21 @@
#
# SPDX-License-Identifier: BSD-3-Clause
-name: Go1.23.4
+name: Go1.25.0
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- - name: Set up Go 1.23
- uses: actions/setup-go@v5
+ - name: Set up Go 1.25
+ uses: actions/setup-go@v6
with:
- go-version: "^1.23.4"
+ go-version: "^1.25.0"
id: go
- name: Check out code into the Go module directory
- uses: actions/checkout@v4
+ uses: actions/checkout@v6
- name: Build
run: make build
diff --git a/go.mod b/go.mod
index 89a1f8a5..6c8edfd7 100644
--- a/go.mod
+++ b/go.mod
@@ -4,7 +4,7 @@
module git.sr.ht/~shulhan/pakakeh.go
-go 1.24.0
+go 1.25.0
require (
golang.org/x/crypto v0.47.0