Skip to content

Commit 1069baa

Browse files
committed
ci(docs): actions verified creator notes
1 parent 900feb9 commit 1069baa

File tree

4 files changed

+22
-0
lines changed

4 files changed

+22
-0
lines changed

.github/workflows/license.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ jobs:
1212

1313
steps:
1414
- name: Checkout the repo
15+
# Verified creator: https://github.com/marketplace/actions/checkout
16+
# GitHub Action for checking out a repo
1517
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1618

1719
- name: Check license headers

.github/workflows/pr.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout the repo
22+
# Verified creator: https://github.com/marketplace/actions/checkout
23+
# GitHub Action for checking out a repo
2224
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2325

2426
- name: Bootstrap Action Workspace

.github/workflows/prerelease.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@ jobs:
1717

1818
steps:
1919
- name: Checkout the repo
20+
# Verified creator: https://github.com/marketplace/actions/checkout
21+
# GitHub Action for checking out a repo
2022
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2123

2224
- name: Bootstrap Action Workspace
2325
id: bootstrap
2426
uses: ./.github/actions/bootstrap
2527

2628
- name: Login to GitHub Container Registry
29+
# Verified creator: https://github.com/marketplace/actions/docker-login
30+
# GitHub Action to login against a Docker registry
2731
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
2832
with:
2933
registry: ghcr.io
@@ -49,6 +53,8 @@ jobs:
4953

5054
steps:
5155
- name: Checkout the repo
56+
# Verified creator: https://github.com/marketplace/actions/checkout
57+
# GitHub Action for checking out a repo
5258
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5359

5460
- name: Bootstrap Action Workspace

0 commit comments

Comments
 (0)