Merge pull request #413 from strukturag/golang-1.20

Add support for Golang 1.20
This commit is contained in:
Joachim Bauch 2023-02-22 08:33:43 +01:00 committed by GitHub
commit 15490b802a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -24,9 +24,9 @@ jobs:
strategy: strategy:
matrix: matrix:
go-version: go-version:
- "1.17"
- "1.18" - "1.18"
- "1.19" - "1.19"
- "1.20"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -71,9 +71,9 @@ jobs:
strategy: strategy:
matrix: matrix:
go-version: go-version:
- "1.17"
- "1.18" - "1.18"
- "1.19" - "1.19"
- "1.20"
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: [create] needs: [create]
steps: steps:

View file

@ -26,9 +26,9 @@ jobs:
strategy: strategy:
matrix: matrix:
go-version: go-version:
- "1.17"
- "1.18" - "1.18"
- "1.19" - "1.19"
- "1.20"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View file

@ -17,7 +17,7 @@ information on the API of the signaling server.
The following tools are required for building the signaling server. The following tools are required for building the signaling server.
- git - git
- go >= 1.17 - go >= 1.18 (usually the last three versions of go are supported)
- make - make
- protobuf-compiler >= 3 - protobuf-compiler >= 3

View file

@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} golang:1.19 AS builder FROM --platform=${BUILDPLATFORM} golang:1.20 AS builder
ARG TARGETARCH ARG TARGETARCH
ARG TARGETOS ARG TARGETOS

View file

@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} golang:1.19 AS builder FROM --platform=${BUILDPLATFORM} golang:1.20 AS builder
WORKDIR /workdir WORKDIR /workdir