From f8bcea23fce7d26d4e3707c664f1f754c5250776 Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 20 Dec 2025 11:54:53 +0800 Subject: [PATCH] Update GitHub Actions workflows to use Go version 1.25 - Changed the Go version in multiple workflow files from 1.24 to 1.25, ensuring compatibility with the latest features and improvements in the Go programming language. --- .github/workflows/pr-test.yml | 8 ++++---- .github/workflows/unit-test.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index e12c9b39..cf32f336 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -201,7 +201,7 @@ jobs: strategy: matrix: - go: [1.24] + go: ["1.25"] if: > ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} @@ -393,7 +393,7 @@ jobs: strategy: matrix: - go: [1.24] + go: ["1.25"] if: > ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} @@ -565,7 +565,7 @@ jobs: strategy: matrix: - go: [1.24] + go: ["1.25"] db: [MySQL8.0, SQLite3] if: > ${{ github.event.workflow_run.event == 'pull_request' && @@ -733,7 +733,7 @@ jobs: strategy: matrix: - go: [1.24] + go: ["1.25"] db: [MySQL8.0, SQLite3] redis: [4, 5, 6] mongo: ["6.0"] diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 297ddfb6..2935e50b 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -208,7 +208,7 @@ jobs: strategy: matrix: - go: [1.24] + go: ["1.25"] steps: - name: Checkout Kun uses: actions/checkout@v4 @@ -338,7 +338,7 @@ jobs: strategy: matrix: - go: [1.24] + go: ["1.25"] steps: - name: Checkout Kun uses: actions/checkout@v4 @@ -448,7 +448,7 @@ jobs: strategy: matrix: - go: [1.24] + go: ["1.25"] db: [MySQL8.0, SQLite3] steps: - name: Checkout Kun @@ -581,7 +581,7 @@ jobs: strategy: matrix: - go: [1.24] + go: ["1.25"] db: [MySQL8.0, SQLite3] redis: [4, 5, 6] mongo: ["6.0"]