chore(build): Update to use go 1.23.2

This commit is contained in:
Marco Vito Moscaritolo 2024-10-11 19:03:30 +02:00
parent f654fbf459
commit a890a47cfd
4 changed files with 5 additions and 4 deletions

View File

@ -13,7 +13,8 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.20'
go-version: '^1.23'
check-latest: true
id: go
- name: Check out code into the Go module directory

View File

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '^1.20'
go-version: '^1.23'
check-latest: true
- name: Compile man page markup
id: gen-man-page-md

View File

@ -1,4 +1,4 @@
FROM golang:1.23.1 as builder
FROM golang:1.23.2 as builder
WORKDIR /go/src/mikefarah/yq

View File

@ -1,4 +1,4 @@
FROM golang:1.23.1
FROM golang:1.23.2
RUN apt-get update && \
apt-get install -y npm && \