@@ -27,21 +27,29 @@ jobs:
2727 - id : repo-basename
2828 run : ' echo "value=`basename ${{ github.repository }}`" >> $GITHUB_OUTPUT'
2929 - name : Checkout the repo
30+ # Verified creator: https://github.com/marketplace/actions/checkout
31+ # GitHub Action for checking out a repo
3032 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3133 - name : Setup Pages
3234 id : pages
35+ # Verified creator: https://github.com/marketplace/actions/configure-github-pages
36+ # A GitHub Action to enable Pages and extract various metadata about a site.
3337 uses : actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
3438 - name : Build documentation
3539 uses : elastic/docs-builder@main
3640 with :
3741 prefix : ' ${{ steps.repo-basename.outputs.value }}'
3842 - name : Upload artifact
43+ # Verified creator: https://github.com/marketplace/actions/upload-github-pages-artifact
44+ # A composite action for packaging and uploading an artifact that can be deployed to GitHub Pages.
3945 uses : actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
4046 with :
4147 path : .artifacts/docs/html
4248
4349 - name : Deploy artifact
4450 id : deployment
51+ # Verified creator: https://github.com/marketplace/actions/deploy-github-pages-site
52+ # GitHub Action to publish artifacts to GitHub Pages for deployments
4553 uses : actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
4654
4755 build :
@@ -52,13 +60,17 @@ jobs:
5260
5361 steps :
5462 - name : Checkout the repo
63+ # Verified creator: https://github.com/marketplace/actions/checkout
64+ # GitHub Action for checking out a repo
5565 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5666
5767 - name : Bootstrap Action Workspace
5868 id : bootstrap
5969 uses : ./.github/actions/bootstrap
6070
6171 - name : Login to GitHub Container Registry
72+ # Verified creator: https://github.com/marketplace/actions/docker-login
73+ # GitHub Action to login against a Docker registry
6274 uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
6375 with :
6476 registry : ghcr.io
0 commit comments