Skip to content

Commit bbc29d3

Browse files
committed
Bump conn to v.3.7.3; go v1.25.0; bump GHA
1 parent 9cd28b7 commit bbc29d3

3 files changed

Lines changed: 19 additions & 16 deletions

File tree

.github/workflows/test.yml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
- name: Turn off git core.autocrlf
3636
if: matrix.os == 'windows-latest'
3737
run: git config --global core.autocrlf false
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939
with:
4040
fetch-depth: 2
41-
- uses: actions/setup-go@v5
41+
- uses: actions/setup-go@v6
4242
with:
4343
go-version-file: go.mod
4444
- name: 'go install necessary tools'
@@ -49,14 +49,17 @@ jobs:
4949
if: always()
5050
run: go test -timeout=120s -covermode=count -coverprofile coverage.txt -bench=. -benchtime=1x ./...
5151
# Don't send code coverage if anything failed to reduce spam.
52-
- uses: codecov/codecov-action@v4
52+
- uses: codecov/codecov-action@v6
5353
with:
5454
token: ${{secrets.CODECOV_TOKEN}}
5555
- name: 'Cleanup'
5656
if: always()
5757
run: rm coverage.txt
5858
- name: 'Check: go test -race'
5959
run: go test -timeout=120s -race -bench=. -benchtime=1x ./...
60+
# codecov leaves junk behind, remove that first.
61+
- run: rm -f codecov codecov.SHA256SUM codecov.SHA256SUM.sig codecov.exe.SHA256SUM codecov.exe.SHA256SUM.sig
62+
if: always()
6063
- name: 'Check: benchmark 📈'
6164
run: ba -against HEAD~1
6265
- name: 'Check: go test -short (CGO_ENABLED=0)'
@@ -105,8 +108,8 @@ jobs:
105108
- name: Turn off git core.autocrlf
106109
if: matrix.os == 'windows-latest'
107110
run: git config --global core.autocrlf false
108-
- uses: actions/checkout@v4
109-
- uses: actions/setup-go@v5
111+
- uses: actions/checkout@v6
112+
- uses: actions/setup-go@v6
110113
with:
111114
go-version-file: go.mod
112115
- name: 'go install necessary tools'
@@ -256,15 +259,15 @@ jobs:
256259
permissions:
257260
security-events: write
258261
steps:
259-
- uses: actions/checkout@v4
260-
- uses: actions/setup-go@v5
262+
- uses: actions/checkout@v6
263+
- uses: actions/setup-go@v6
261264
with:
262265
go-version-file: go.mod
263266
- name: Initialize CodeQL
264-
uses: github/codeql-action/init@v3
267+
uses: github/codeql-action/init@v4
265268
with:
266269
languages: go
267270
- name: Autobuild
268-
uses: github/codeql-action/autobuild@v3
271+
uses: github/codeql-action/autobuild@v4
269272
- name: Perform CodeQL Analysis
270-
uses: github/codeql-action/analyze@v3
273+
uses: github/codeql-action/analyze@v4

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
module periph.io/x/host/v3
66

7-
go 1.22.6
7+
go 1.25.0
88

99
require (
10-
periph.io/x/conn/v3 v3.7.2
10+
periph.io/x/conn/v3 v3.7.3
1111
periph.io/x/d2xx v0.1.1
1212
)

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
github.com/jonboulle/clockwork v0.4.0 h1:p4Cf1aMWXnXAUh8lVfewRBx1zaTSYKrKMF2g3ST4RZ4=
2-
github.com/jonboulle/clockwork v0.4.0/go.mod h1:xgRqUGwRcjKCO1vbZUEtSLrqKoPSsUpK7fnezOII0kc=
3-
periph.io/x/conn/v3 v3.7.2 h1:qt9dE6XGP5ljbFnCKRJ9OOCoiOyBGlw7JZgoi72zZ1s=
4-
periph.io/x/conn/v3 v3.7.2/go.mod h1:Ao0b4sFRo4QOx6c1tROJU1fLJN1hUIYggjOrkIVnpGg=
1+
github.com/jonboulle/clockwork v0.5.0 h1:Hyh9A8u51kptdkR+cqRpT1EebBwTn1oK9YfGYbdFz6I=
2+
github.com/jonboulle/clockwork v0.5.0/go.mod h1:3mZlmanh0g2NDKO5TWZVJAfofYk64M7XN3SzBPjZF60=
3+
periph.io/x/conn/v3 v3.7.3 h1:+8UblkC4omTB1M+jZTvTj3qoxQOTJy0ZRQm8DLUuVzc=
4+
periph.io/x/conn/v3 v3.7.3/go.mod h1:tyV9YaYquOJ2Q2yAL0B5zk9ZvHGsbW56M6y92wjyPDQ=
55
periph.io/x/d2xx v0.1.1 h1:LHp+u+qAWLB5THrTT/AzyjdvfUhllvDF5wBJP7uvn+U=
66
periph.io/x/d2xx v0.1.1/go.mod h1:rLM321G11Fc14Pp088khBkmXb70Pxx/kCPaIK7uRUBc=

0 commit comments

Comments
 (0)