git » chasquid » commit 43a4ed2

github: Docker integration tests run with latest Go version

author Alberto Bertogli
2025-03-31 08:23:54 UTC
committer Alberto Bertogli
2025-03-31 08:23:54 UTC
parent 2a2607f5d81a6c6481e6a7a499ec6d759a564476

github: Docker integration tests run with latest Go version

Today, we only require that Docker integration tests use a Go version
>= 1.20. In practice, it almost always picks the latest version.

For consistency, this patch requests it to run the latest Go version.

.github/workflows/docker.yml +2 -1

diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
index 095c0b6..068aa93 100644
--- a/.github/workflows/docker.yml
+++ b/.github/workflows/docker.yml
@@ -34,7 +34,8 @@ jobs:
       - uses: actions/checkout@v4
       - uses: actions/setup-go@v5
         with:
-          go-version: ">=1.20"
+          go-version: "1.x"
+          check-latest: true
       - name: Install goveralls
         run: go install github.com/mattn/goveralls@latest
       - name: Docker info (for debugging)