From 7af155fd1ea2acaa39ca3452a2aaf9c9881ca251 Mon Sep 17 00:00:00 2001 From: Aaron Lindsay Date: Fri, 25 Jul 2025 22:50:32 -0400 Subject: [PATCH] Update CI The macos-latest runners are now arm64, and there wasn't a golang version built for arm64 before 1.19.x. Also, the latest Vanguard commit uses 'tls.CipherSuites', which didn't exist before 1.14, so drop support (i.e. testing) for anything before then. --- .github/workflows/test.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fa7f115..cfcd2ce 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,12 +6,17 @@ jobs: test: strategy: matrix: - go-version: [1.13.x, 1.18.x, 1.20.x] + go-version: [1.19.x, 1.22.x, 1.24.x] os: [ubuntu-latest, macos-latest, windows-latest] + include: + - os: ubuntu-latest + go-version: 1.14.x + - os: windows-latest + go-version: 1.14.x runs-on: ${{ matrix.os }} steps: - name: Install Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} - name: Checkout code