From 77c154ec00beacae550cbc8c196f07b476b8a8b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Wed, 19 Aug 2026 20:15:36 +0200 Subject: [PATCH] Update Go version checks in test workflow --- .github/workflows/test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index efe0775..ca81e51 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,9 +39,9 @@ jobs: - run: | test '${{ steps.go-version-1.outputs.minimal }}' == '1.16' - run: | - test '${{ steps.go-version-1.outputs.latest }}' == '1.26' + test '${{ steps.go-version-1.outputs.latest }}' == '1.27' - run: | - test '${{ steps.go-version-1.outputs.matrix }}' == '["1.16","1.17","1.18","1.19","1.20","1.21","1.22","1.23","1.24","1.25","1.26"]' + test '${{ steps.go-version-1.outputs.matrix }}' == '["1.16","1.17","1.18","1.19","1.20","1.21","1.22","1.23","1.24","1.25","1.26","1.27"]' - uses: ./ id: go-version-2 with: @@ -52,11 +52,11 @@ jobs: - run: | test '${{ steps.go-version-2.outputs.go-mod-version }}' == '1.16' - run: | - test '${{ steps.go-version-2.outputs.minimal }}' == '1.25' + test '${{ steps.go-version-2.outputs.minimal }}' == '1.26' - run: | - test '${{ steps.go-version-2.outputs.latest }}' == '1.26' + test '${{ steps.go-version-2.outputs.latest }}' == '1.27' - run: | - test '${{ steps.go-version-2.outputs.matrix }}' == '["1.25","1.26"]' + test '${{ steps.go-version-2.outputs.matrix }}' == '["1.26","1.27"]' - uses: ./ id: go-version-3 with: @@ -68,8 +68,8 @@ jobs: - run: | test '${{ steps.go-version-3.outputs.go-mod-version }}' == '1.16' - run: | - test '${{ steps.go-version-3.outputs.minimal }}' == '1.25.13' + test '${{ steps.go-version-3.outputs.minimal }}' == '1.26.7' - run: | - test '${{ steps.go-version-3.outputs.latest }}' == '1.26.6' + test '${{ steps.go-version-3.outputs.latest }}' == '1.27.0' - run: | - test '${{ steps.go-version-3.outputs.matrix }}' == '["1.25.13","1.26.6"]' + test '${{ steps.go-version-3.outputs.matrix }}' == '["1.26.7","1.27.0"]'