From 357468d6efe9d6fa5cd8040eb442cdddcb4f819e Mon Sep 17 00:00:00 2001 From: Matthias Gatto Date: Tue, 20 Feb 2024 17:53:56 +0100 Subject: [PATCH] fix workflow woith last commits Signed-off-by: Matthias Gatto --- .github/workflows/notify-integration-release-via-manual.yaml | 2 ++ .github/workflows/notify-integration-release-via-tag.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/notify-integration-release-via-manual.yaml b/.github/workflows/notify-integration-release-via-manual.yaml index de00fb0..ece1617 100644 --- a/.github/workflows/notify-integration-release-via-manual.yaml +++ b/.github/workflows/notify-integration-release-via-manual.yaml @@ -22,6 +22,8 @@ jobs: ref: ${{ github.event.inputs.branch }} # Ensure that Docs are Compiled - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + with: + go-version: 'stable' - shell: bash run: make generate - shell: bash diff --git a/.github/workflows/notify-integration-release-via-tag.yaml b/.github/workflows/notify-integration-release-via-tag.yaml index 28120d5..8af773d 100644 --- a/.github/workflows/notify-integration-release-via-tag.yaml +++ b/.github/workflows/notify-integration-release-via-tag.yaml @@ -26,6 +26,8 @@ jobs: ref: ${{ github.ref }} # Ensure that Docs are Compiled - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + with: + go-version: 'stable' - shell: bash run: make generate - shell: bash