Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix GHA CI build matrix #4436

Merged
merged 5 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/docs.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/git.Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/lint.Dockerfile
Original file line number Diff line number Diff line change
@@ -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=""
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/vendor.Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
Loading