Skip to content

Commit

Permalink
Merge pull request #50 from x448/x448/bump-to-go1.23-in-ci
Browse files Browse the repository at this point in the history
.github: bump go versions in ci.yml
  • Loading branch information
x448 authored Sep 21, 2024
2 parents cd53d56 + 859fe07 commit af6900e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
go-version: [1.17, 1.18, 1.19]
go-version: [1.17, 1.22, 1.23] # oldest supported version and latest 2 versions
runs-on: ${{ matrix.os }}
permissions:
contents: read

steps:
- name: Install Go
uses: actions/setup-go@v5
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ${{ matrix.go-version }}
check-latest: true

- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7

- name: Get dependencies
run: go get -v -t -d ./...
Expand Down

0 comments on commit af6900e

Please sign in to comment.