From 5fde99d5441077c9d0c50406c47c582a18659498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 1 Mar 2023 21:07:46 +0100 Subject: [PATCH] github: Skip tests on Go 1.20 for now See #38 --- .github/workflows/test.yml | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 51f736a..8a81d06 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: test: strategy: matrix: - go-version: [1.19.x,1.20.x] + go-version: [1.19.x] # Need to wait with Go 1.20, see issue #38 platform: [ macos-latest, ubuntu-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: diff --git a/go.mod b/go.mod index 1e69b22..7f090fd 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gohugoio/hugoreleaser -go 1.18 +go 1.19 require ( github.com/bep/execrpc v0.7.1