Skip to content

Commit 9ea6d98

Browse files
committed
Update to go v1.25.0
1 parent 2b220d3 commit 9ea6d98

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
go: [1.24.x]
13+
go: [1.25.x]
1414
os: [ubuntu-latest, macos-latest, windows-latest]
1515
runs-on: ${{ matrix.os }}
1616
env:
1717
GOFLAGS: -mod=readonly
1818

1919
steps:
2020
- name: Set up Go
21-
uses: actions/setup-go@v3
21+
uses: actions/setup-go@v5
2222
with:
2323
go-version: ${{ matrix.go }}
2424

2525
- name: Checkout code
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v5
2727

2828
- name: Test
2929
run: go test -race -parallel 1 -short ./internal/...

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24-alpine3.21 AS builder
1+
FROM golang:1.25-alpine3.22 AS builder
22

33
RUN mkdir /app
44
ADD . /app

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/stjudewashere/seonaut
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/antchfx/htmlquery v1.3.4

0 commit comments

Comments
 (0)