File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Container image that runs your code
2
- FROM alpine:edge
2
+ FROM alpine:3.21
3
3
4
4
# Copies your code file from your action repository to the filesystem path `/` of the container
5
5
COPY entrypoint.sh /entrypoint.sh
Original file line number Diff line number Diff line change 26
26
BUILD_LATEX=0
27
27
fi
28
28
29
- PACKAGES=" doxygen graphviz ttf-freefont $4 "
29
+ PACKAGES=" doxygen=1.12.0-r0 graphviz ttf-freefont $4 "
30
30
if [ " $BUILD_LATEX " = true ] ; then
31
31
PACKAGES=" $PACKAGES perl build-base texlive-full biblatex ghostscript"
32
32
fi
33
33
apk add $PACKAGES
34
34
35
- echo " ::notice::You're on the bleeding edge of doxygen-action. To pin this version use: mattnotmitt/doxygen-action@$( doxygen --version) "
36
-
37
35
# run "regular" doxygen
38
36
doxygen $1
39
37
You can’t perform that action at this time.
0 commit comments