From 427ea7fbd96e1647f4ea4e7bd2f44db4a6576014 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sat, 26 Jul 2025 16:37:09 +0200 Subject: [PATCH] Update Go version in GitHub Actions workflow to 1.24 --- .github/workflows/go_test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go_test.yaml b/.github/workflows/go_test.yaml index 221bd56..dee29ae 100644 --- a/.github/workflows/go_test.yaml +++ b/.github/workflows/go_test.yaml @@ -9,6 +9,7 @@ on: - "go.mod" - "go.sum" - "webui/webui.go" + - ".github/workflows/go_test.yaml" pull_request: branches: - main @@ -24,7 +25,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: "1.24" cache: true - name: Run Tests run: go test -tags=test ./... -v