This repository was archived by the owner on Dec 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +14
-5
lines changed
Expand file tree Collapse file tree 5 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ permissions:
1212
1313env :
1414 # renovate: dev-tag
15- DEV_TAG : ' 18 '
15+ DEV_TAG : ' 19 '
1616
1717jobs :
1818
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ services:
104104 context : ../images/dev-go-custom
105105 args :
106106 # renovate: dev-tag
107- TAG : ' 18 '
107+ TAG : ' 19 '
108108 UID : ${UID:-1000}
109109 GID : ${GID:-1000}
110110 volumes :
@@ -148,7 +148,7 @@ services:
148148 context : ../images/dev-go-custom
149149 args :
150150 # renovate: dev-tag
151- TAG : ' 18 '
151+ TAG : ' 19 '
152152 UID : ${UID:-1000}
153153 GID : ${GID:-1000}
154154 volumes :
Original file line number Diff line number Diff line change @@ -95,6 +95,12 @@ RUN mkdir "$HOME/dapr" \
9595RUN curl -L https://fly.io/install.sh | sh
9696ENV PATH="$PATH:$HOME/.fly/bin"
9797
98+ # install actionlint
99+ # https://github.com/rhysd/actionlint
100+ ENV ACTIONLINT_VERSION=1.7.5
101+ RUN go install github.com/rhysd/actionlint/cmd/actionlint@v${ACTIONLINT_VERSION} \
102+ && go clean -modcache
103+
98104# install go-migrate
99105# https://github.com/golang-migrate/migrate
100106# renovate: datasource=github-releases depName=golang-migrate/migrate
Original file line number Diff line number Diff line change 55
66# update this value, when you update the Dockerfile
77# renovate: dev-tag
8- TAG=' 18 '
8+ TAG=' 19 '
99
1010# go to repo root
1111cd $( git rev-parse --show-toplevel)
Original file line number Diff line number Diff line change 44# Format Code
55gofumpt -l -w .
66
7- # Run linter
7+ # Run workflows linter
8+ actionlint
9+
10+ # Run go linter
811find -type d -name gen -prune -o -name " go.mod" -exec sh -c ' cd "$(dirname {})" && pwd && golangci-lint run' \;
912
You can’t perform that action at this time.
0 commit comments