We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2912635 + ff57559 commit 6734f85Copy full SHA for 6734f85
3 files changed
go.mod
@@ -1,6 +1,6 @@
1
module openapi
2
3
-go 1.24.4
+go 1.25
4
5
require (
6
github.com/itchyny/gojq v0.12.17
tools/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:1.24.4-alpine3.21 AS builder
+FROM golang:1.25.0-alpine3.21 AS builder
ADD . /go/src/tcli
WORKDIR /go/src/tcli
tools/run_linter.sh
@@ -1,10 +1,10 @@
#!/bin/sh
-LINTER_IMAGE=golangci/golangci-lint:v2.1.6-alpine
+LINTER_IMAGE=golangci/golangci-lint:v2.4.0-alpine
DIR=${1:-$(pwd)}
# flag overrides
docker run --rm \
7
-v "$DIR":/tcli:ro \
8
-w /tcli \
9
"$LINTER_IMAGE" golangci-lint run \
10
- -v --tests=false --timeout=5m
+ -v --tests=false --timeout=5m
0 commit comments