Skip to content

Commit

Permalink
fix: disable unsupported go versions to unblock pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
bahkauv70 committed Feb 13, 2025
1 parent b657206 commit 4163b08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go-version: ["1.18", "1.19", "1.20", "1.21", "1.22"]
go-version: ["1.21", "1.22", "1.23"]
runs-on: ${{ matrix.os }}
steps:
- name: Install SSH Key
Expand All @@ -38,7 +38,7 @@ jobs:
with:
go-version: ${{ matrix.go-version }}
- name: Lint
if: ${{ matrix.go-version == '1.19' || matrix.go-version == '1.20' || matrix.go-version == '1.21' || matrix.go-version == '1.22'}}
if: ${{ matrix.go-version == '1.21' || matrix.go-version == '1.22' || matrix.go-version == '1.23'}}
working-directory: ./sdk-repo-updated
run: make lint skip-non-generated-files=true
- name: Test
Expand Down

0 comments on commit 4163b08

Please sign in to comment.