From 7371587a1fbde2462b047650ffaad3c29e443443 Mon Sep 17 00:00:00 2001 From: Sashwat K Date: Sat, 15 Jun 2024 10:40:20 +0530 Subject: [PATCH] fix --- .github/workflows/update_go_modules.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update_go_modules.yml b/.github/workflows/update_go_modules.yml index bb65c5b..51d8c0d 100644 --- a/.github/workflows/update_go_modules.yml +++ b/.github/workflows/update_go_modules.yml @@ -22,7 +22,7 @@ jobs: id: update-go-version run: | latest_go_version=$(curl -s https://go.dev/VERSION?m=text | head -n 1 | awk -F 'go' '{print $2}') - go mod edit -go=${latest_go_version} + go mod edit -go ${latest_go_version} echo "Updated go version to ${latest_go_version}" echo "::set-output name=latest_go_version::${latest_go_version}"