File tree 4 files changed +6
-6
lines changed
4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 26
26
run : cd hack/tools && make golangci-lint
27
27
28
28
- name : Install npm
29
- uses : actions/setup-node@v2
29
+ uses : actions/setup-node@v4
30
30
with :
31
- node-version : ' 14 '
31
+ node-version : ' 20 '
32
32
33
33
- name : Install markdown-lint tool
34
34
run : npm install -g markdownlint-cli
Original file line number Diff line number Diff line change 21
21
run : cd hack/tools && make golangci-lint
22
22
23
23
- name : Install npm
24
- uses : actions/setup-node@v2
24
+ uses : actions/setup-node@v4
25
25
with :
26
- node-version : ' 14 '
26
+ node-version : ' 20 '
27
27
28
28
- name : Install markdown-lint tool
29
29
run : npm install -g markdownlint-cli
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ WORKDIR /workspace
11
11
COPY go.mod go.mod
12
12
COPY go.sum go.sum
13
13
14
- ENV GOPROXY=direct
14
+ ENV GOPROXY=https://proxy.golang.org, direct
15
15
RUN go mod download
16
16
17
17
# Copy the go source
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ lint-markdown: ## Lint the project's markdown
189
189
ifdef GITHUB_ACTIONS
190
190
markdownlint -c md-config.json .
191
191
else
192
- docker run -i --rm -v "$$(pwd)":/work $(CACHE_IMAGE_REGISTRY) /tmknom/markdownlint -c /work/md-config.json .
192
+ docker run -i --rm -v "$$(pwd)":/work ghcr.io /tmknom/dockerfiles /markdownlint -c /work/md-config.json .
193
193
endif
194
194
195
195
.PHONY : lint-shell
You can’t perform that action at this time.
0 commit comments