Skip to content

Commit bb37795

Browse files
committed
Add Go 1.20 to the test matrix and upgrade actions/setup-go
1 parent bb2bab7 commit bb37795

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
test:
66
strategy:
77
matrix:
8-
go: [ 1.19, 1.18, 1.17, 1.16 ]
8+
go: [ "1.20", "1.19", "1.18", "1.17", "1.16" ]
99
os: [ ubuntu-22.04, ubuntu-20.04 ]
1010
name: Tests Go ${{ matrix.go }} # This name is used in main branch protection rules
1111
runs-on: ${{ matrix.os }}
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
sudo apt-get install -y make gcc
3333
- name: Install Go
34-
uses: actions/setup-go@v2
34+
uses: actions/setup-go@v4
3535
with:
3636
go-version: ${{ matrix.go }}
3737
- name: Checkout code

0 commit comments

Comments
 (0)