ci: use go 1.21.9 and 1.22.2

This commit is contained in:
Matthew Penner 2024-04-10 17:16:28 -06:00
parent 5415f8ae07
commit 1d5090957b
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-22.04] os: [ubuntu-22.04]
go: ["1.21.8", "1.22.1"] go: ["1.21.9", "1.22.2"]
goos: [linux] goos: [linux]
goarch: [amd64, arm64] goarch: [amd64, arm64]

View File

@ -17,7 +17,7 @@ jobs:
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v5 uses: actions/setup-go@v5
with: with:
go-version: "1.21.8" go-version: "1.21.9"
- name: Build release binaries - name: Build release binaries
env: env:

View File

@ -1,5 +1,5 @@
# Stage 1 (Build) # Stage 1 (Build)
FROM golang:1.21.8-alpine AS builder FROM golang:1.21.9-alpine AS builder
ARG VERSION ARG VERSION
RUN apk add --update --no-cache git make RUN apk add --update --no-cache git make