Skip to content
Merged
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/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
XDG_RUNTIME_DIR: /run
strategy:
matrix:
go-version: [1.22.x]
go-version: [1.24.x]
os: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ require (
github.com/charmbracelet/log v0.4.0
github.com/fxamacker/cbor/v2 v2.8.0
github.com/katzenpost/hpqc v0.0.68
github.com/katzenpost/katzenpost v0.0.63
github.com/katzenpost/katzenpost v0.0.64
github.com/quic-go/quic-go v0.53.0
github.com/stretchr/testify v1.10.0
go.etcd.io/bbolt v1.4.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ github.com/katzenpost/circl v1.3.9-0.20240222183521-1cd9a34e9a0c h1:FYy03rLIjdyj
github.com/katzenpost/circl v1.3.9-0.20240222183521-1cd9a34e9a0c/go.mod h1:+EBrwiGYs9S+qZqaqxujN1CReTNCMAG6p+31KkEDeeA=
github.com/katzenpost/hpqc v0.0.68 h1:Soo5YlW6bsiBmMsM01wI2drPUeoa0j99kWHZ/8Uo2PI=
github.com/katzenpost/hpqc v0.0.68/go.mod h1:yaVqoZyKeBmgiKnGBpgLNf+nfO4ll81f54RAnaL6OpI=
github.com/katzenpost/katzenpost v0.0.63 h1:odAiDXaFbWNUPGbcruhvI5mC4/iK1BMQ+rGQvlboTzI=
github.com/katzenpost/katzenpost v0.0.63/go.mod h1:Ljht9S/XFgZ/3HQcCiITQ/ws8H520Pr7jLJ4gLJH/Ws=
github.com/katzenpost/katzenpost v0.0.64 h1:SfpXJ3xRUR/im+9m5iyZAsn8cQTWDZ1oYzajw3J8qsI=
github.com/katzenpost/katzenpost v0.0.64/go.mod h1:Ljht9S/XFgZ/3HQcCiITQ/ws8H520Pr7jLJ4gLJH/Ws=
github.com/katzenpost/nyquist v0.0.10 h1:rh9TCEXCsutsg+cvbV6ASVFnzSAYBisWQ3fnwQSPa34=
github.com/katzenpost/nyquist v0.0.10/go.mod h1:tyK92JiCptgsaE0iUAMlt5W2v2Rdw6mnUpIdIidIGHo=
github.com/katzenpost/sntrup4591761 v0.0.0-20231024131303-8755eb1986b8 h1:TsKxH0x2RUwf5rBw67k15bqVM3oVbexA9oaTZQLIy3Y=
Expand Down
2 changes: 1 addition & 1 deletion pki/server/state.go
Original file line number Diff line number Diff line change
Expand Up @@ -2191,7 +2191,7 @@ func (s *state) backgroundFetchConsensus(epoch uint64) {
}
ctx, cancel := context.WithTimeout(context.Background(), time.Minute*2)
defer cancel()
doc, _, err := c.Get(ctx, epoch)
doc, _, err := c.GetPKIDocumentForEpoch(ctx, epoch)
if err != nil {
return
}
Expand Down