dependencies: update go

This commit is contained in:
Tulir Asokan 2025-02-12 13:51:43 +02:00
parent 36f25e257d
commit 50b9a51c1e
3 changed files with 7 additions and 6 deletions

View file

@ -11,8 +11,8 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ["1.22", "1.23"]
name: Lint ${{ matrix.go-version == '1.23' && '(latest)' || '(old)' }}
go-version: ["1.23", "1.24"]
name: Lint ${{ matrix.go-version == '1.24' && '(latest)' || '(old)' }}
steps:
- uses: actions/checkout@v4
@ -40,8 +40,8 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ["1.22", "1.23"]
name: Test ${{ matrix.go-version == '1.23' && '(latest)' || '(old)' }}
go-version: ["1.23", "1.24"]
name: Test ${{ matrix.go-version == '1.24' && '(latest)' || '(old)' }}
steps:
- uses: actions/checkout@v4

View file

@ -1,5 +1,6 @@
# v0.8.0 (unreleased)
* Bumped minimum Go version to 1.23.
* Added support for history transfer.
* Updated libsignal to v0.66.1.

4
go.mod
View file

@ -1,8 +1,8 @@
module go.mau.fi/mautrix-signal
go 1.22.0
go 1.23.0
toolchain go1.23.5
toolchain go1.24.0
require (
github.com/coder/websocket v1.8.12