Skip to content

Commit

Permalink
Drop support for Go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
fancycode committed Nov 6, 2024
1 parent eea69ca commit d15bd82
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/workflows/govuln.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.21"
- "1.22"
- "1.23"
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
go-version: "1.22"

- name: lint
uses: golangci/[email protected]
Expand All @@ -49,7 +49,7 @@ jobs:

- name: Check minimum supported version of Go
run: |
go mod tidy -go=1.21.0 -compat=1.21.0
go mod tidy -go=1.22.0 -compat=1.22.0
- name: Check go.mod / go.sum
run: |
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.21"
- "1.22"
- "1.23"
runs-on: ubuntu-latest
Expand All @@ -49,7 +48,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.21"
- "1.22"
- "1.23"
runs-on: ubuntu-latest
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ jobs:
strategy:
matrix:
go-version:
- "1.21"
- "1.22"
- "1.23"
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ information on the API of the signaling server.
The following tools are required for building the signaling server.

- git
- go >= 1.21
- go >= 1.22
- make

Usually the last two versions of Go are supported. This follows the release
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/strukturag/nextcloud-spreed-signaling

go 1.21.0
go 1.22.0

require (
github.com/dlintw/goconf v0.0.0-20120228082610-dcc070983490
Expand Down

0 comments on commit d15bd82

Please sign in to comment.