Skip to content

Commit

Permalink
drop support for go1.19
Browse files Browse the repository at this point in the history
Gomega no longer supports go1.19 so we cannot run tests without pinning
to an older release.

Go1.19 is EoL so stop testing with this version.

Updated test matrix to only test supported Go versions "stable"
(currently 1.21) and "oldstable" (1.20).
  • Loading branch information
abg committed Feb 6, 2024
1 parent f4e75cf commit f8cf46d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '1.19', '1.20' ]
version: [ 'oldstable', 'stable' ]
name: Go ${{ matrix.version }}
outputs:
pr_number: ${{ github.event.number }}
steps:
- uses: actions/setup-go@v2
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.version }}
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: ./scripts/run-tests.sh
call-dependabot-pr-workflow:
needs: test
Expand Down

0 comments on commit f8cf46d

Please sign in to comment.