Skip to content

Commit 670d0cb

Browse files
committed
Require Go 1.24+
1 parent b5aa103 commit 670d0cb

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
- macOS
1212
- Windows
1313
go-version:
14-
- '1.23'
1514
- '1.24'
1615
- '1.25'
16+
- '1.26'
1717
architecture:
1818
- amd64
1919
- arm64
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup Git
4242
run: git config --global core.autocrlf false
4343
- name: Checkout code
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
with:
4646
persist-credentials: false
4747
- name: Setup Go
@@ -55,7 +55,7 @@ jobs:
5555
- name: Vet
5656
run: go vet ./...
5757
- name: Upload coverage to Codecov
58-
uses: codecov/codecov-action@v5
58+
uses: codecov/codecov-action@v6
5959
with:
6060
token: ${{ secrets.CODECOV_TOKEN }}
6161
env_vars: GO

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
module github.com/hattya/md2html
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
6-
github.com/hattya/go.diff v0.0.0-20250818133302-361d56c38ca8
6+
github.com/hattya/go.diff v0.1.0
77
github.com/yuin/goldmark v1.8.2
88
github.com/yuin/goldmark-emoji v1.0.6
99
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/hattya/go.diff v0.0.0-20250818133302-361d56c38ca8 h1:ymWvO0HQcsIQ7p1chXUcEe9YNsPUDzZSPLMm6qwmoLs=
2-
github.com/hattya/go.diff v0.0.0-20250818133302-361d56c38ca8/go.mod h1:AOXTk4ks7LSUxrhTSp2PoDTrAAq8yPTQ8XxOSmC2N40=
1+
github.com/hattya/go.diff v0.1.0 h1:3aKk7iZmDOLPy/gZgM8uqqMTaYcGVFzAizIvV5Fw30s=
2+
github.com/hattya/go.diff v0.1.0/go.mod h1:Ug7uUN8Js6Kse32jOlahcEKoGKWREIM9hTbuMRWmSi4=
33
github.com/yuin/goldmark v1.8.2 h1:kEGpgqJXdgbkhcOgBxkC0X0PmoPG1ZyoZ117rDVp4zE=
44
github.com/yuin/goldmark v1.8.2/go.mod h1:ip/1k0VRfGynBgxOz0yCqHrbZXhcjxyuS66Brc7iBKg=
55
github.com/yuin/goldmark-emoji v1.0.6 h1:QWfF2FYaXwL74tfGOW5izeiZepUDroDJfWubQI9HTHs=

0 commit comments

Comments
 (0)