Skip to content

Commit

Permalink
Fix controller-gen SEGV. Runner go 1.21.
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Ortel <[email protected]>
  • Loading branch information
jortel committed Sep 12, 2024
1 parent ad1ed6d commit 9c9ae19
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.21'
- run: make fmt

vet:
Expand All @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.21'
- run: make vet

build:
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.21'
- run: make cmd

test-unit:
Expand All @@ -42,7 +42,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.21'
- run: make test

test-api:
Expand All @@ -60,7 +60,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.21'
- run: |
rm -f $DB_PATH
make run &
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.21'
- run: make test

test-api:
Expand All @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.21'
- run: |
make vet
DISCONNECTED=1 make run &
Expand Down

0 comments on commit 9c9ae19

Please sign in to comment.