Skip to content

Commit

Permalink
Initial 1.9.8 version
Browse files Browse the repository at this point in the history
  • Loading branch information
mattnotmitt committed Feb 3, 2024
1 parent e0c8cd4 commit cbe72c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 1 addition & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit cbe72c8

Please sign in to comment.