From 852a17bf9eff410ef61caf23cbe8e419956352f4 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 5 Jan 2023 12:48:32 +0100 Subject: [PATCH] .github/workflows/release.yml: Setup go v1.18 --- .github/workflows/release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 92f36a7..4ce0824 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,6 +15,11 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.18 + - name: compile id: compile run: | @@ -44,6 +49,11 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.18 + - name: Install build dependencies run: | sudo apt-get -y update @@ -102,6 +112,11 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.18 + - name: Package id: package run: |