From cbe72c8e402e8a3faa1f0b247ef90aa6c8e4ce74 Mon Sep 17 00:00:00 2001 From: Matt C Date: Sat, 3 Feb 2024 14:41:15 +0000 Subject: [PATCH] Initial 1.9.8 version --- Dockerfile | 2 +- entrypoint.sh | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index af9e269..1f6be7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Container image that runs your code -FROM alpine:edge +FROM alpine:3.19 # Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.sh /entrypoint.sh diff --git a/entrypoint.sh b/entrypoint.sh index d28107e..4c94bc3 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -26,14 +26,12 @@ else BUILD_LATEX=0 fi -PACKAGES="doxygen graphviz ttf-freefont $4" +PACKAGES="doxygen=1.9.8-r0 graphviz ttf-freefont $4" if [ "$BUILD_LATEX" = true ] ; then PACKAGES="$PACKAGES perl build-base texlive-full biblatex ghostscript" fi apk add $PACKAGES -echo "::notice::You're on the bleeding edge of doxygen-action. To pin this version use: mattnotmitt/doxygen-action@$(doxygen --version)" - # run "regular" doxygen doxygen $1