Skip to content

Commit 4b991a7

Browse files
authored
Merge pull request #8 from jabley/upgrade-all-the-things
feat: upgrade Go version
2 parents 7d8b455 + 604f36c commit 4b991a7

File tree

2 files changed

+12
-13
lines changed

2 files changed

+12
-13
lines changed

.github/workflows/go.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,23 @@ name: Go
55

66
on:
77
push:
8-
branches: [ "main" ]
8+
branches: ["main"]
99
pull_request:
10-
branches: [ "main" ]
10+
branches: ["main"]
1111

1212
jobs:
13-
1413
build:
1514
runs-on: ubuntu-latest
1615
steps:
17-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v3
1817

19-
- name: Set up Go
20-
uses: actions/setup-go@v3
21-
with:
22-
go-version: 1.19.5
18+
- name: Set up Go
19+
uses: actions/setup-go@v3
20+
with:
21+
go-version: 1.25.4
2322

24-
- name: Build
25-
run: go build -v ./...
23+
- name: Build
24+
run: go build -v ./...
2625

27-
- name: Test
28-
run: go test -v ./...
26+
- name: Test
27+
run: go test -v ./...

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/jabley/httptraced
22

3-
go 1.19
3+
go 1.25
44

55
require github.com/ogier/pflag v0.0.1

0 commit comments

Comments
 (0)