Skip to content
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
4 changes: 3 additions & 1 deletion .github/workflows/go-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@ jobs:
- name: Lint (go vet)
run: go vet -v ./...

# yamllint disable rule:line-length
- name: Lint golangci-lint
uses: golangci/golangci-lint-action@v9
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
with:
args: --timeout=10m
version: v2.1.0
skip-cache: true
# yamllint enable rule:line-length
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUILDTIME_IMAGE=golang:1.25.7-alpine3.23
ARG BUILDTIME_IMAGE=golang:1.26.0-alpine3.23
ARG RUNTIME_IMAGE=scratch

###############################################################################
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN apk add --update --no-cache make nodejs npm wget \
&& npm install -g --ignore-scripts markdownlint-cli@0.47.0

ADD https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh ${WORKDIR}/
RUN sh install.sh -b $(go env GOPATH)/bin v2.0.0 \
RUN sh install.sh -b $(go env GOPATH)/bin v2.9.0 \
&& rm install.sh \
&& golangci-lint --version

Expand Down