Skip to content

Commit 461edce

Browse files
committed
wip
1 parent b80167f commit 461edce

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
go: ['1.19', '1.20']
25+
go: ['1.24']
2626
steps:
2727
- uses: actions/setup-go@v5
2828
with:
2929
go-version: ${{ matrix.go }}
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131

3232
- name: Format
3333
run: go fmt

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Release
14-
uses: softprops/action-gh-release@v1
14+
uses: softprops/action-gh-release@v2
1515
with:
1616
generate_release_notes: true

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
go: ['1.19', '1.20']
13+
go: ['1.23', '1.24']
1414
steps:
15-
- uses: actions/setup-go@v3
15+
- uses: actions/setup-go@v4
1616
with:
1717
go-version: ${{ matrix.go }}
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v5
1919

2020
- name: Get dependencies
2121
run: |
@@ -26,7 +26,7 @@ jobs:
2626
run: go test -race -v -covermode=atomic -coverprofile=coverage.out
2727

2828
- name: Send coverage
29-
uses: shogo82148/actions-goveralls@v1
29+
uses: shogo82148/actions-goveralls@v2
3030
with:
3131
github-token: ${{ secrets.GITHUB_TOKEN }}
3232
path-to-profile: coverage.out
@@ -38,6 +38,6 @@ jobs:
3838
needs: test
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: shogo82148/actions-goveralls@v1
41+
- uses: shogo82148/actions-goveralls@v2
4242
with:
4343
parallel-finished: true

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module github.com/pires/go-proxyproto
22

3-
go 1.18
3+
go 1.23
44

5-
require golang.org/x/net v0.36.0
5+
require golang.org/x/net v0.39.0
66

7-
require golang.org/x/text v0.22.0 // indirect
7+
require golang.org/x/text v0.24.0 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
golang.org/x/net v0.36.0 h1:vWF2fRbw4qslQsQzgFqZff+BItCvGFQqKzKIzx1rmoA=
2-
golang.org/x/net v0.36.0/go.mod h1:bFmbeoIPfrw4sMHNhb4J9f6+tPziuGjq7Jk/38fxi1I=
3-
golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM=
4-
golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY=
1+
golang.org/x/net v0.39.0 h1:ZCu7HMWDxpXpaiKdhzIfaltL9Lp31x/3fCP11bc6/fY=
2+
golang.org/x/net v0.39.0/go.mod h1:X7NRbYVEA+ewNkCNyJ513WmMdQ3BineSwVtN2zD/d+E=
3+
golang.org/x/text v0.24.0 h1:dd5Bzh4yt5KYA8f9CJHCP4FB4D51c2c6JvN37xJJkJ0=
4+
golang.org/x/text v0.24.0/go.mod h1:L8rBsPeo2pSS+xqN0d5u2ikmjtmoJbDBT1b7nHvFCdU=

0 commit comments

Comments
 (0)