Skip to content

Commit 8772a42

Browse files
committed
fix: disable unsupported go versions to unblock pipeline
1 parent 94b4ab7 commit 8772a42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest]
15-
go-version: ["1.18", "1.19", "1.20", "1.21", "1.22"]
15+
go-version: ["1.21", "1.22", "1.23"]
1616
runs-on: ${{ matrix.os }}
1717
steps:
1818
- name: Install SSH Key
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
go-version: ${{ matrix.go-version }}
4040
- name: Lint
41-
if: ${{ matrix.go-version == '1.19' || matrix.go-version == '1.20' || matrix.go-version == '1.21' || matrix.go-version == '1.22'}}
41+
if: ${{ matrix.go-version == '1.21' || matrix.go-version == '1.22' || matrix.go-version == '1.23'}}
4242
working-directory: ./sdk-repo-updated
4343
run: make lint skip-non-generated-files=true
4444
- name: Test

0 commit comments

Comments
 (0)