From 3f30271e72dbce9d57df6e867ffaa5462bfa2cc4 Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Thu, 26 Oct 2023 13:43:51 +0200 Subject: [PATCH] No longer support Golang 1.19. This follows the Go release policy of only supporting the last two versions. --- .github/workflows/tarball.yml | 2 -- .github/workflows/test.yml | 1 - README.md | 2 +- go.mod | 2 +- 4 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tarball.yml b/.github/workflows/tarball.yml index c2d02c5..0161cc1 100644 --- a/.github/workflows/tarball.yml +++ b/.github/workflows/tarball.yml @@ -24,7 +24,6 @@ jobs: strategy: matrix: go-version: - - "1.19" - "1.20" - "1.21" runs-on: ubuntu-latest @@ -71,7 +70,6 @@ jobs: strategy: matrix: go-version: - - "1.19" - "1.20" - "1.21" runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d17410a..5b5d971 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,6 @@ jobs: strategy: matrix: go-version: - - "1.19" - "1.20" - "1.21" runs-on: ubuntu-latest diff --git a/README.md b/README.md index f0aa51d..990190f 100644 --- a/README.md +++ b/README.md @@ -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.19 +- go >= 1.20 - make - protobuf-compiler >= 3 diff --git a/go.mod b/go.mod index 78e870f..3051462 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/strukturag/nextcloud-spreed-signaling -go 1.19 +go 1.20 require ( github.com/dlintw/goconf v0.0.0-20120228082610-dcc070983490