From 3a61962c0432993311819930724e02c0e2f5ec1b Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Tue, 13 May 2025 21:55:09 -0400 Subject: [PATCH] I expected something different. --- .gitea/workflows/tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index e7ddd31..cb37d06 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -10,6 +10,7 @@ jobs: env: GOPRIVATE: 'git.siteworxpro.com' GOPROXY: 'direct' + GO_VERSION: '1.24.3' name: 🔍 🐹 Go Tests runs-on: ubuntu-latest steps: @@ -23,7 +24,7 @@ jobs: - name: ⚙️ 🐹 Set up Go Environment uses: actions/setup-go@v2 with: - go-version: '1.24.0' + go-version: ${{ env.GO_VERSION }} cache: true - name: 📖 🔍 Checkout Repository Code