This is an automated email from the ASF dual-hosted git repository. xintongsong pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/flink-agents.git
commit dd30875430e494e3204460c9f5ae97e05a15dde7 Author: youjin <[email protected]> AuthorDate: Mon May 25 10:06:59 2026 +0800 [ci] Use local rsync-deployments action in docs workflow Switch the two upload steps in .github/workflows/docs.yml from burnett01/rsync-deployments to the locally-defined action added in the previous commit. This fixes the nightly docs build, which currently fails because the third-party action is not in the ASF allowed-actions list. This commit only touches main's workflow file. The cron trigger always reads the workflow definition from the default branch, so release branches do not need this change for the scheduled build to work -- they only need the local action committed alongside. --- .github/workflows/docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index e7437a4f..4b83e4f2 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -56,7 +56,7 @@ jobs: docker run --rm --volume "$PWD:/root/flink-agents" chesnay/flink-ci:java_8_11_17_21_maven_386 bash -c "cd /root/flink-agents && chmod +x ./tools/docs.sh && ./tools/docs.sh" - name: Upload documentation - uses: burnett01/rsync-deployments@7659d600d8bdd035bb5cdfba1d4bd0dd4a307ca6 # 8.0.2 + uses: ./.github/actions/rsync-deployments with: switches: --archive --compress --delete path: docs/target/ @@ -68,7 +68,7 @@ jobs: - name: Upload documentation alias if: env.flink_alias != '' - uses: burnett01/rsync-deployments@7659d600d8bdd035bb5cdfba1d4bd0dd4a307ca6 # 8.0.2 + uses: ./.github/actions/rsync-deployments with: switches: --archive --compress --delete path: docs/target/
