diff --git a/.github/actions/antora-docs/action.yaml b/.github/actions/antora-docs/action.yaml index 5e547c9d9..6f8935081 100644 --- a/.github/actions/antora-docs/action.yaml +++ b/.github/actions/antora-docs/action.yaml @@ -3,7 +3,7 @@ name: 'antora-docs' description: 'Build the docs using Antora' runs: using: 'docker' - image: 'docker://docker.io/antora/antora:3.0.1' + image: 'docker://docker.io/antora/antora:3.1.2' args: - 'antora' - '--stacktrace' diff --git a/docs/build.sh b/docs/build.sh index c0e609958..6594e1bb1 100755 --- a/docs/build.sh +++ b/docs/build.sh @@ -7,7 +7,7 @@ set -euo pipefail SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" SOURCE_DIR=$(cd "${SCRIPT_DIR}/.." && pwd) WORKSPACE="/github/workspace" -ANTORA_VERSION=${ANTORA_VERSION:-"3.0.1"} +ANTORA_VERSION=${ANTORA_VERSION:-"3.1.2"} rm -rf "${SCRIPT_DIR}/build" docker run -v "$SOURCE_DIR":"$WORKSPACE":Z --rm -t "docker.io/antora/antora:${ANTORA_VERSION}" antora --stacktrace --clean "${WORKSPACE}/docs/antora-playbook.yml"