From c45f702d3cac794291c08189a304de2cbf5c0179 Mon Sep 17 00:00:00 2001 From: Nader Ziada Date: Fri, 11 Oct 2024 16:35:36 -0400 Subject: [PATCH] update the go version used by the github action there are multiple go mod files in this porject and since one of them at least was updated to 1.23, the go action should run with 1.23 --- .github/workflows/run-test-pyramid.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-test-pyramid.yml b/.github/workflows/run-test-pyramid.yml index d3434b97..1630eed1 100644 --- a/.github/workflows/run-test-pyramid.yml +++ b/.github/workflows/run-test-pyramid.yml @@ -15,5 +15,5 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-go@v5 with: - go-version-file: go.mod + go-version: '1.23' - run: make test