build: Make sure we get the latest matching Go version

Also, disable caching in setup-go when we do manual cache setup with a
better cache key. It became default-true in the latest action version.
This commit is contained in:
Jakob Borg 2023-06-14 09:37:59 +02:00
parent 439fa6c848
commit d22a38d947
1 changed files with 20 additions and 1 deletions

View File

@ -5,7 +5,9 @@ on:
push: push:
env: env:
# The go version to use for builds. # The go version to use for builds. We set check-latest to true when
# installing, so we get the latest patch version that matches the
# expression.
GO_VERSION: "^1.20.3" GO_VERSION: "^1.20.3"
# Optimize compatibility on the slow archictures. # Optimize compatibility on the slow archictures.
@ -61,6 +63,7 @@ jobs:
with: with:
go-version: ${{ matrix.go }} go-version: ${{ matrix.go }}
cache: true cache: true
check-latest: true
- name: Build - name: Build
run: | run: |
@ -83,6 +86,8 @@ jobs:
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false
check-latest: true
- name: Check correctness - name: Check correctness
run: | run: |
@ -136,6 +141,8 @@ jobs:
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false
check-latest: true
- uses: actions/cache@v3 - uses: actions/cache@v3
with: with:
@ -182,6 +189,8 @@ jobs:
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false
check-latest: true
- uses: actions/cache@v3 - uses: actions/cache@v3
with: with:
@ -222,6 +231,8 @@ jobs:
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false
check-latest: true
- uses: actions/cache@v3 - uses: actions/cache@v3
with: with:
@ -342,6 +353,8 @@ jobs:
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false
check-latest: true
- uses: actions/cache@v3 - uses: actions/cache@v3
with: with:
@ -395,6 +408,8 @@ jobs:
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false
check-latest: true
- name: Package source - name: Package source
run: | run: |
@ -505,6 +520,8 @@ jobs:
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false
check-latest: true
- uses: ruby/setup-ruby@v1 - uses: ruby/setup-ruby@v1
with: with:
@ -638,6 +655,8 @@ jobs:
- uses: actions/setup-go@v4 - uses: actions/setup-go@v4
with: with:
go-version: ${{ env.GO_VERSION }} go-version: ${{ env.GO_VERSION }}
cache: false
check-latest: true
- uses: actions/cache@v3 - uses: actions/cache@v3
with: with: