Skip to content

[Snyk] Security upgrade nginx from 1.25-alpine to 1.27-alpine #78

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

WORKDIR /backend

RUN apt-get update && \

Check failure on line 13 in Dockerfile

View workflow job for this annotation

GitHub Actions / format

DL3008 warning: Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`
apt-get install --no-install-recommends -y \
musl-tools

Expand All @@ -23,7 +23,7 @@

RUN mdbook build

FROM nginx:1.25-alpine
FROM nginx:1.27-alpine

ARG DATE_CREATED

Expand Down
48 changes: 24 additions & 24 deletions theme/highlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ var hljs = (function () {
? e
: n
: "start" === n[0].event
? e
: n
? e
: n
: e.length
? e
: n;
? e
: n;
}
function c(e) {
s +=
Expand Down Expand Up @@ -369,10 +369,10 @@ var hljs = (function () {
return n
? +n
: (function (e) {
return N.includes(e.toLowerCase());
})(e)
? 0
: 1;
return N.includes(e.toLowerCase());
})(e)
? 0
: 1;
}
const R = t,
y = r,
Expand Down Expand Up @@ -798,20 +798,20 @@ var hljs = (function () {
e.cached_variants
? e.cached_variants
: (function e(n) {
return (
!!n &&
(n.endsWithParent ||
e(n.starts))
);
})(e)
? r(e, {
starts: e.starts
? r(e.starts)
: null,
})
: Object.isFrozen(e)
? r(e)
: e
return (
!!n &&
(n.endsWithParent ||
e(n.starts))
);
})(e)
? r(e, {
starts: e.starts
? r(e.starts)
: null,
})
: Object.isFrozen(e)
? r(e)
: e
);
})("self" === e ? s : e);
}),
Expand Down Expand Up @@ -946,8 +946,8 @@ var hljs = (function () {
? "<br>"
: e
: f.tabReplace
? e.replace(/\t/g, f.tabReplace)
: e,
? e.replace(/\t/g, f.tabReplace)
: e,
)
: e;
}
Expand Down
Loading