From d9a25e277a1ea43dda655d7f0589da49673eb73a Mon Sep 17 00:00:00 2001 From: Andrea Zucchini Date: Tue, 21 Nov 2023 16:48:26 +0000 Subject: [PATCH] test: using stable/oldstable aliases If stable is provided, action will get the latest stable version from the go-versions repository manifest. If oldstable is provided, when current release is 1.19.x, action will resolve version as 1.18.x, where x is the latest patch release. We also want to maintain 1.20 version, so we test it. [#186180915](https://www.pivotaltracker.com/story/show/186180915) --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0f8fcb33..b88ac784 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - version: [ '1.20', '1.21' ] + version: [ 'stable', 'oldstable', '1.20' ] name: Go ${{ matrix.version }} outputs: pr_number: ${{ github.event.number }}