From 8dbd8f621140ad91a6c15f61ada396e24628adcf Mon Sep 17 00:00:00 2001 From: Sylvain Rabot Date: Fri, 27 May 2022 11:14:01 +0200 Subject: [PATCH] Fix remaining go 1.17 bits Signed-off-by: Sylvain Rabot --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 654d0a1..c317a0f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,14 +10,14 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Check out code into the Go module directory - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up Go ${{ matrix.go }} - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: - go-version: "1.17" + go-version: "1.18" id: go - name: Setup docker buildx