ci: fix GHA CI build matrix (#4436)

This commit is contained in:
Milos Gajdos 2024-10-22 15:41:44 +01:00 committed by GitHub
commit c427f84503
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 13 additions and 7 deletions

View File

@ -22,13 +22,19 @@ permissions:
jobs:
test:
env:
# Setting GOTOOLCHAIN to local tells go
# to to use the bundled Go version rather
# than fetching the toolchain according to
# toolchain directive found in go.mod.
GOTOOLCHAIN: local
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go:
- 1.21.12
- 1.22.5
- 1.22.8
- 1.23.2
target:
- test-coverage
- test-cloud-storage

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG GO_VERSION=1.22.5
ARG GO_VERSION=1.23.2
ARG ALPINE_VERSION=3.20
ARG XX_VERSION=1.2.1

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG GO_VERSION=1.22.5
ARG GO_VERSION=1.23.2
ARG ALPINE_VERSION=3.20
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG GO_VERSION=1.22.5
ARG GO_VERSION=1.23.2
ARG ALPINE_VERSION=3.20
FROM alpine:${ALPINE_VERSION} AS base

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG GO_VERSION=1.22.5
ARG GO_VERSION=1.23.2
ARG ALPINE_VERSION=3.20
ARG GOLANGCI_LINT_VERSION=v1.60.3
ARG BUILDTAGS=""

View File

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
ARG GO_VERSION=1.22.5
ARG GO_VERSION=1.23.2
ARG ALPINE_VERSION=3.20
ARG MODOUTDATED_VERSION=v0.8.0