From bd0d901d220b6d82a7585b8905912b23e9d69768 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Mon, 7 Dec 2020 12:35:52 +0100 Subject: [PATCH] Fix typo in github workflows Without this patch, the PR jobs are broken and no jobs are running. This was a recently introduced typo in the last refactor of the PR jobs. This should fix it, and make the PR test working again. --- .github/workflows/on-pr.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/on-pr.yaml b/.github/workflows/on-pr.yaml index 6f8ba0f..92fd41c 100644 --- a/.github/workflows/on-pr.yaml +++ b/.github/workflows/on-pr.yaml @@ -22,7 +22,7 @@ jobs: GO_VERSION=$(awk '/^go/ {print $2};' go.mod) echo "::set-output name=version::${GO_VERSION}" id: awk_gomod - - name: Ensure go version: + - name: Ensure go version uses: actions/setup-go@v2 with: go-version: "${{ steps.awk_gomod.outputs.version }}" @@ -61,7 +61,7 @@ jobs: GO_VERSION=$(awk '/^go/ {print $2};' go.mod) echo "::set-output name=version::${GO_VERSION}" id: awk_gomod - - name: Ensure go version: + - name: Ensure go version uses: actions/setup-go@v2 with: go-version: "${{ steps.awk_gomod.outputs.version }}" @@ -87,7 +87,7 @@ jobs: GO_VERSION=$(awk '/^go/ {print $2};' go.mod) echo "::set-output name=version::${GO_VERSION}" id: awk_gomod - - name: Ensure go version: + - name: Ensure go version uses: actions/setup-go@v2 with: go-version: "${{ steps.awk_gomod.outputs.version }}" @@ -161,7 +161,7 @@ jobs: GO_VERSION=$(awk '/^go/ {print $2};' go.mod) echo "::set-output name=version::${GO_VERSION}" id: awk_gomod - - name: Ensure go version: + - name: Ensure go version uses: actions/setup-go@v2 with: go-version: "${{ steps.awk_gomod.outputs.version }}"