Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.23
go-version: 1.26
- run: sudo apt-get install libpcap-dev
- uses: golangci/golangci-lint-action@v3
- run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.23
go-version: 1.26
- run: sudo apt-get install libpcap-dev libcap2-bin
- run: go build -v ./...
# fuzzing, need to specify each package separately
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/facebook/time

go 1.23.0
go 1.26.0

toolchain go1.23.7
toolchain go1.26.0

require (
github.com/Knetic/govaluate v3.0.0+incompatible
Expand Down
Loading