Skip to content

Commit

Permalink
Upgrade backend dependencies and some base images (#1226)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz authored Aug 16, 2023
1 parent a189647 commit 529cb4c
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 52 deletions.
65 changes: 32 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ edition = "2021"
rust-version = "1.65"

[workspace.dependencies]
anyhow = "1.0.72"
anyhow = "1.0.74"
askalono = "0.4.6"
askama = "0.12.0"
askama_axum = "0.3.0"
async-trait = "0.1.72"
async-trait = "0.1.73"
axum = { version = "0.6.20", features = ["macros"] }
bincode = "1.3.3"
cached = "0.44.0"
clap = { version = "4.3.19", features = ["derive"] }
clap = { version = "4.3.21", features = ["derive"] }
clomonitor-core = { path = "../clomonitor-core" }
comfy-table = "6.2.0"
config = "0.13.3"
Expand All @@ -44,19 +44,19 @@ mime = "0.3.17"
mockall = "0.11.4"
mockito = "1.1.0"
octorust = "0.3.2"
openssl = { version = "0.10.55", features = ["vendored"] }
openssl = { version = "0.10.56", features = ["vendored"] }
postgres-openssl = "0.5.0"
postgres-types = { version = "0.2.5", features = ["derive"] }
predicates = "3.0.3"
regex = "1.9.1"
regex = "1.9.3"
reqwest = "0.11.18"
resvg = "0.27.0"
serde = { version = "1.0.181", features = ["derive"] }
serde_json = "1.0.104"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.105"
serde_yaml = "0.9.25"
serde_qs = "0.12.0"
sha2 = "0.10.7"
tempfile = "3.7.0"
tempfile = "3.7.1"
tera = { version = "1.19.0", default-features = false }
time = { version = "0.3.23", features = [
"formatting",
Expand All @@ -65,7 +65,7 @@ time = { version = "0.3.23", features = [
"serde",
] }
tiny-skia = "0.8.4"
tokio = { version = "1.29.1", features = [
tokio = { version = "1.31.0", features = [
"macros",
"process",
"rt-multi-thread",
Expand Down
2 changes: 1 addition & 1 deletion clomonitor-apiserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ WORKDIR /docs/www
RUN hugo

# Final stage
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN apk --no-cache add ca-certificates ttf-opensans && addgroup -S clomonitor && adduser -S clomonitor -G clomonitor
USER clomonitor
WORKDIR /home/clomonitor
Expand Down
2 changes: 1 addition & 1 deletion clomonitor-archiver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /clomonitor/clomonitor-archiver
RUN cargo build --release

# Final stage
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN apk --no-cache add ca-certificates git && addgroup -S clomonitor && adduser -S clomonitor -G clomonitor
USER clomonitor
WORKDIR /home/clomonitor
Expand Down
4 changes: 2 additions & 2 deletions clomonitor-linter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /clomonitor/clomonitor-linter
RUN cargo build --release

# Build OpenSSF scorecard
FROM golang:1.20.7-alpine3.18 AS scorecard
FROM golang:1.21.0-alpine3.18 AS scorecard
WORKDIR /tmp
RUN apk --no-cache add git make bash gcc musl-dev binutils-gold
RUN git clone https://github.com/ossf/scorecard
Expand All @@ -24,7 +24,7 @@ RUN make install
RUN make build

# Final stage
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN addgroup -S clomonitor && adduser -S clomonitor -G clomonitor
USER clomonitor
WORKDIR /home/clomonitor
Expand Down
2 changes: 1 addition & 1 deletion clomonitor-notifier/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /clomonitor/clomonitor-notifier
RUN cargo build --release

# Final stage
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN apk --no-cache add ca-certificates git && addgroup -S clomonitor && adduser -S clomonitor -G clomonitor
USER clomonitor
WORKDIR /home/clomonitor
Expand Down
2 changes: 1 addition & 1 deletion clomonitor-registrar/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /clomonitor/clomonitor-registrar
RUN cargo build --release

# Final stage
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN apk --no-cache add ca-certificates git && addgroup -S clomonitor && adduser -S clomonitor -G clomonitor
USER clomonitor
WORKDIR /home/clomonitor
Expand Down
4 changes: 2 additions & 2 deletions clomonitor-tracker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ WORKDIR /clomonitor/clomonitor-tracker
RUN cargo build --release

# Build OpenSSF scorecard
FROM golang:1.20.7-alpine3.18 AS scorecard
FROM golang:1.21.0-alpine3.18 AS scorecard
WORKDIR /tmp
RUN apk --no-cache add git make bash gcc musl-dev binutils-gold
RUN git clone https://github.com/ossf/scorecard
Expand All @@ -24,7 +24,7 @@ RUN make install
RUN make build

# Final stage
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN apk --no-cache add ca-certificates git && addgroup -S clomonitor && adduser -S clomonitor -G clomonitor
USER clomonitor
WORKDIR /home/clomonitor
Expand Down
4 changes: 2 additions & 2 deletions database/migrations/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Build tern
FROM golang:1.20.7-alpine3.18 AS tern
FROM golang:1.21.0-alpine3.18 AS tern
RUN apk --no-cache add git
RUN go install github.com/jackc/tern@latest

# Build final image
FROM alpine:3.18.2
FROM alpine:3.18.3
RUN addgroup -S clomonitor && adduser -S clomonitor -G clomonitor
USER clomonitor
WORKDIR /home/clomonitor
Expand Down

0 comments on commit 529cb4c

Please sign in to comment.