From 5f41abad5d08e45491cffa3009450003aa1bbfa8 Mon Sep 17 00:00:00 2001 From: Guangming Luo Date: Wed, 10 Jul 2024 10:46:10 +0800 Subject: [PATCH] chore: add go 1.22 to CI --- .github/workflows/pr-check.yml | 4 ++-- .github/workflows/tests.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 03828a8..ffa860b 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -23,7 +23,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: "1.20" + go-version: "1.22" - uses: actions/cache@v3 with: @@ -51,7 +51,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v3 with: - go-version: "1.20" + go-version: "1.22" - name: Golangci Lint # https://golangci-lint.run/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3c53e3f..1b96ef5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: unit-benchmark-test: strategy: matrix: - go: [ "1.18", "1.19", "1.20", "1.21" ] + go: [ "1.18", "1.19", "1.20", "1.21", "1.22" ] os: [ X64 ] runs-on: ${{ matrix.os }} steps: