Skip to content

Commit 6734f85

Browse files
authored
Merge pull request #3 from HPInc/goformat
updated go format
2 parents 2912635 + ff57559 commit 6734f85

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module openapi
22

3-
go 1.24.4
3+
go 1.25
44

55
require (
66
github.com/itchyny/gojq v0.12.17

tools/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.4-alpine3.21 AS builder
1+
FROM golang:1.25.0-alpine3.21 AS builder
22

33
ADD . /go/src/tcli
44
WORKDIR /go/src/tcli

tools/run_linter.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/sh
2-
LINTER_IMAGE=golangci/golangci-lint:v2.1.6-alpine
2+
LINTER_IMAGE=golangci/golangci-lint:v2.4.0-alpine
33
DIR=${1:-$(pwd)}
44

55
# flag overrides
66
docker run --rm \
77
-v "$DIR":/tcli:ro \
88
-w /tcli \
99
"$LINTER_IMAGE" golangci-lint run \
10-
-v --tests=false --timeout=5m
10+
-v --tests=false --timeout=5m

0 commit comments

Comments
 (0)