Skip to content

Commit b84fe17

Browse files
committed
v1.12.0
1 parent 6627c43 commit b84fe17

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Container image that runs your code
2-
FROM alpine:edge
2+
FROM alpine:3.21
33

44
# Copies your code file from your action repository to the filesystem path `/` of the container
55
COPY entrypoint.sh /entrypoint.sh

entrypoint.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,12 @@ else
2626
BUILD_LATEX=0
2727
fi
2828

29-
PACKAGES="doxygen graphviz ttf-freefont $4"
29+
PACKAGES="doxygen=1.12.0-r0 graphviz ttf-freefont $4"
3030
if [ "$BUILD_LATEX" = true ] ; then
3131
PACKAGES="$PACKAGES perl build-base texlive-full biblatex ghostscript"
3232
fi
3333
apk add $PACKAGES
3434

35-
echo "::notice::You're on the bleeding edge of doxygen-action. To pin this version use: mattnotmitt/doxygen-action@$(doxygen --version)"
36-
3735
# run "regular" doxygen
3836
doxygen $1
3937

0 commit comments

Comments
 (0)