We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53868c4 commit 94ce82bCopy full SHA for 94ce82b
.github/workflows/checks.yaml
@@ -31,7 +31,7 @@ jobs:
31
check-latest: true
32
go-version: 1.25.4
33
- name: Run golangci-lint
34
- uses: golangci/golangci-lint-action@v8
+ uses: golangci/golangci-lint-action@v9
35
with:
36
version: latest
37
- name: Delete pre-installed shellcheck
Dockerfile
@@ -36,7 +36,7 @@ RUN make -C /src static-check
# Some things like postgres do not like to run as root. For simplicity, just always run as an unprivileged user,
38
# but for it to be able to read the go cache, we need to allow it.
39
-RUN chmod 777 -R /src/
+RUN chown -R 4200:4200 /src/ /go/
40
USER 4200:4200
41
RUN cd /src \
42
&& git config --global --add safe.directory /src \
0 commit comments