Skip to content

Commit

Permalink
Bump go versions in CI to 1.20/21 (#17)
Browse files Browse the repository at this point in the history
Signed-off-by: Roman Mohr <[email protected]>
  • Loading branch information
rmohr committed Aug 21, 2023
1 parent e921838 commit 1399224
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go-cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:

strategy:
matrix:
go-version: [ 1.15, 1.16, 1.x ]
go-version: [ '1.20', '1.21', '1.x' ]
# windows-latest failed because the suggested fixes tests don't ignore the famous Windows end of line (\r\n)
os: [ubuntu-latest, macos-latest]

steps:
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v2
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Cache Go modules
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod # Module download cache
Expand Down

0 comments on commit 1399224

Please sign in to comment.