From 2ae16842ef50d58cc8005598fcd29a61f88ff1df Mon Sep 17 00:00:00 2001 From: John Guo Date: Thu, 9 Jan 2025 14:14:40 +0800 Subject: [PATCH] up --- .github/workflows/ci-main.yml | 6 +++--- .github/workflows/ci-sub.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index a38917527..777a73c3d 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -29,7 +29,7 @@ concurrency: env: TZ: "Asia/Shanghai" # for unit testing cases of some components that only execute on the latest go version. - LATEST_GO_VERSION: "1.24" + LATEST_GO_VERSION: "1.23" jobs: code-test: @@ -40,7 +40,7 @@ jobs: # 1. Update the `LATEST_GO_VERSION` env variable. # 2. Update the `Report Coverage` action. # 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 - go-version: [ "1.22", "1.23", "1.24"] + go-version: [ "1.22", "1.23" ] goarch: [ "386", "amd64" ] runs-on: ubuntu-20.04 @@ -268,7 +268,7 @@ jobs: - name: Report Coverage uses: codecov/codecov-action@v4 # Only report coverage on the latest go version and amd64 arch - if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.go-version == '1.24' && matrix.goarch == 'amd64' }} + if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' && matrix.go-version == '1.23' && matrix.goarch == 'amd64' }} with: flags: go-${{ matrix.go-version }}-${{ matrix.goarch }} token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/ci-sub.yml b/.github/workflows/ci-sub.yml index 8f4f0acf8..6a1244385 100644 --- a/.github/workflows/ci-sub.yml +++ b/.github/workflows/ci-sub.yml @@ -30,7 +30,7 @@ concurrency: env: TZ: "Asia/Shanghai" # for unit testing cases of some components that only execute on the latest go version. - LATEST_GO_VERSION: "1.24" + LATEST_GO_VERSION: "1.23" jobs: code-test: @@ -40,7 +40,7 @@ jobs: # When adding new go version to the list, make sure: # 1. Update the `LATEST_GO_VERSION` env variable. # 🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥 - go-version: [ "1.22", "1.23", "1.24" ] + go-version: [ "1.22", "1.23" ] goarch: [ "386", "amd64" ] runs-on: ubuntu-latest