Skip to content

Commit 8762e3c

Browse files
authored
fix: use Go version from go.mod (#131)
1 parent 165970c commit 8762e3c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/notify-integration-release-via-manual.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
with:
2828
ref: ${{ github.event.inputs.branch }}
2929
# Ensure that Docs are Compiled
30-
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
30+
- name: Setup go
31+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
32+
with:
33+
go-version-file: 'go.mod'
3134
- shell: bash
3235
run: make docs
3336
- shell: bash

.github/workflows/notify-integration-release-via-tag.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ jobs:
3131
with:
3232
ref: ${{ github.ref }}
3333
# Ensure that Docs are Compiled
34-
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
34+
- name: Setup go
35+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
36+
with:
37+
go-version-file: 'go.mod'
3538
- shell: bash
3639
run: make docs
3740
- shell: bash

0 commit comments

Comments
 (0)