Skip to content

Commit

Permalink
Resolve CI runner failures for ubuntu24.04
Browse files Browse the repository at this point in the history
Older Golang versions are not supported on the latest ubuntu runner image.

actions/runner-images#10636
  • Loading branch information
deeglaze authored Jan 16, 2025
1 parent ef2fcc0 commit b5cf1e3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ on:
push:
tags:
- v*
branches:
- main
branches: [main]
pull_request:
branches: [main]

jobs:
build:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
go-version: [1.21.x, 1.22.x]
os: [macos-latest, ubuntu-latest]

name: Build/Test (${{ matrix.os}}, Go ${{ matrix.go-version }})
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
lint:
strategy:
matrix:
go-version: [1.19.x]
go-version: [1.21.x]
os: [ubuntu-latest]

name: Lint ${{ matrix.dir }} (${{ matrix.os }}, Go ${{ matrix.go-version }})
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
lintc:
strategy:
matrix:
go-version: [1.19.x]
go-version: [1.21.x]
os: [ubuntu-latest]

name: Lint CGO (${{ matrix.os}}, Go ${{ matrix.go-version }})
Expand Down

0 comments on commit b5cf1e3

Please sign in to comment.