We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ed0a5c commit 19b70deCopy full SHA for 19b70de
.github/workflows/release.yml
@@ -27,7 +27,7 @@ jobs:
27
- name: Set up Go
28
uses: actions/setup-go@v4
29
with:
30
- go-version: '1.20'
+ go-version: '1.24'
31
32
- name: Set up Ruby
33
uses: ruby/setup-ruby@v1
@@ -41,6 +41,11 @@ jobs:
41
id: get_version
42
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
43
44
+ - name: Fix go.mod version
45
+ run: |
46
+ # Update go.mod with a valid Go version
47
+ sed -i 's/go 1.24.3/go 1.24/' go.mod
48
+
49
- name: Build binary for ${{ matrix.arch }}
50
run: GOARCH=${{ matrix.goarch }} go build -o agent
51
0 commit comments