File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+ version : 2
7+ updates :
8+ - package-ecosystem : " github-actions"
9+ directory : " /"
10+ schedule :
11+ interval : " monthly"
12+ groups :
13+ " GitHub Actions updates " :
14+ patterns :
15+ - " *"
16+ - package-ecosystem : " docker"
17+ directory : " /"
18+ schedule :
19+ interval : " monthly"
20+ - package-ecosystem : " gomod"
21+ directory : " /backend"
22+ schedule :
23+ interval : " monthly"
24+ groups :
25+ " Go modules updates " :
26+ dependency-type : " production"
27+ " Go modules updates for tests " :
28+ dependency-type : " development"
29+ - package-ecosystem : " npm"
30+ directory : " /frontend"
31+ schedule :
32+ interval : " monthly"
33+ groups :
34+ " NPM modules updates " :
35+ dependency-type : " production"
36+ " NPM development modules updates " :
37+ dependency-type : " development"
Original file line number Diff line number Diff line change 3535# Run
3636FROM umputun/baseimage:app-latest
3737
38+ LABEL org.opencontainers.image.authors="Dmitry Verkhoturov <paskal.07@gmail.com>"
39+ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#docker
40+ LABEL org.opencontainers.image.source="https://github.com/ukeeper/ukeeper-readability"
41+
3842RUN apk add --update ca-certificates && update-ca-certificates
3943
4044COPY --from=build-backend /build/backend/ukeeper-readability /srv/
You can’t perform that action at this time.
0 commit comments