Skip to content

Commit 8b1f6a6

Browse files
authored
Merge pull request #563 from hashicorp/karthik/fix/workflows/action-setup-go
adding go.mod file reference to actions/setup-go
2 parents 6ed141a + 9c6a200 commit 8b1f6a6

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
ref: ${{ github.event.inputs.branch }}
3434
# Ensure that Docs are Compiled
3535
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
36+
with:
37+
go-version-file: 'go.mod'
3638
- shell: bash
3739
run: make generate
3840
- shell: bash

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626
ref: ${{ github.ref }}
2727
# Ensure that Docs are Compiled
2828
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
29+
with:
30+
go-version-file: 'go.mod'
2931
- shell: bash
3032
run: make generate
3133
- shell: bash

0 commit comments

Comments
 (0)