Skip to content

Commit f3d30d2

Browse files
committed
add dependabot updates to GitHub Actions and Dockerfile and Go and JS code
1 parent 02bf1be commit f3d30d2

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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"

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ RUN \
3535
# Run
3636
FROM 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+
3842
RUN apk add --update ca-certificates && update-ca-certificates
3943

4044
COPY --from=build-backend /build/backend/ukeeper-readability /srv/

0 commit comments

Comments
 (0)