Skip to content

Commit 73f4277

Browse files
authored
Adding support for go 1.19 (#185)
1 parent 663bacd commit 73f4277

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/test-and-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
timeout-minutes: 20
1818
strategy:
1919
matrix:
20-
go: [ '1.15', '1.16', '1.17', '1.18' ]
20+
go: [ '1.15', '1.16', '1.17', '1.18', '1.19' ]
2121
steps:
2222
- name: Setup Go environment
2323
uses: actions/setup-go@v2
@@ -57,7 +57,7 @@ jobs:
5757

5858
- name: Install SonarCloud scanner and run analysis
5959
uses: SonarSource/sonarcloud-github-action@master
60-
if: (github.event_name == 'pull_request' || github.ref_type == 'branch') && !github.event.pull_request.head.repo.fork && matrix.go == '1.18'
60+
if: (github.event_name == 'pull_request' || github.ref_type == 'branch') && !github.event.pull_request.head.repo.fork && matrix.go == '1.19'
6161
env:
6262
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
6363
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18
1+
FROM golang:1.19
22

33
RUN mkdir /twilio
44
WORKDIR /twilio

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ This library supports the following Go implementations:
2929
* Go 1.16
3030
* Go 1.17
3131
* Go 1.18
32+
* Go 1.19
3233

3334
## Installation
3435

0 commit comments

Comments
 (0)