File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff 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/...
Original file line number Diff line number Diff line change 1- FROM golang:1.24 -alpine3.21 AS builder
1+ FROM golang:1.25 -alpine3.22 AS builder
22
33RUN mkdir /app
44ADD . /app
Original file line number Diff line number Diff line change 11module github.com/stjudewashere/seonaut
22
3- go 1.24 .0
3+ go 1.25 .0
44
55require (
66 github.com/antchfx/htmlquery v1.3.4
You can’t perform that action at this time.
0 commit comments