diff --git a/.github/workflows/notify-integration-release-via-manual.yml b/.github/workflows/notify-integration-release-via-manual.yml index 03c357a..5e027c8 100644 --- a/.github/workflows/notify-integration-release-via-manual.yml +++ b/.github/workflows/notify-integration-release-via-manual.yml @@ -27,7 +27,10 @@ jobs: with: ref: ${{ github.event.inputs.branch }} # Ensure that Docs are Compiled - - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 + - name: Setup go + uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 + with: + go-version-file: 'go.mod' - shell: bash run: make docs - shell: bash diff --git a/.github/workflows/notify-integration-release-via-tag.yml b/.github/workflows/notify-integration-release-via-tag.yml index 2a00505..2b42df6 100644 --- a/.github/workflows/notify-integration-release-via-tag.yml +++ b/.github/workflows/notify-integration-release-via-tag.yml @@ -31,7 +31,10 @@ jobs: with: ref: ${{ github.ref }} # Ensure that Docs are Compiled - - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 + - name: Setup go + uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0 + with: + go-version-file: 'go.mod' - shell: bash run: make docs - shell: bash