Skip to content
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 .github/workflows/trivy-scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
severity: 'CRITICAL,HIGH'

- name: Upload Trivy scan results to GitHub Security tab
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: 'trivy-results.sarif'
category: trivy-cron
1 change: 1 addition & 0 deletions Dockerfiles/Dockerfile
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the version of libpng reported in the new image build?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure I follow this question, do you mean what version libpng is when I've started the service locally?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Or do you mean what the documentation says about the alpine image libpng?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure I follow this question, do you mean what version libpng is when I've started the service locally?

Yes, this :) just to ensure that we are indeed on the patched 1.6.53 version

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/ $ apk info libpng
libpng-1.6.53-r0 description:
Portable Network Graphics library

libpng-1.6.53-r0 webpage:
http://www.libpng.org

libpng-1.6.53-r0 installed size:
181 KiB

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Ziip-dev just pinging on this one :)

Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Use alpine Linux, download desired version of HUGO and build html files
FROM alpine:3.21 AS build
RUN apk update && apk upgrade
RUN apk add --no-cache wget
ARG HUGO_VERSION="0.147.3"
ARG HUGO_ENV_ARG
Expand Down
Loading