Skip to content

Commit 900feb9

Browse files
committed
ci: pin actions version commits
1 parent b19b0c8 commit 900feb9

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed

.github/workflows/license.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- name: Checkout the repo
15+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1516

1617
- name: Check license headers
1718
run: |

.github/workflows/pr.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ jobs:
1818
build:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- name: Checkout the repo
22+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2223

2324
- name: Bootstrap Action Workspace
2425
id: bootstrap

.github/workflows/prerelease.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,23 @@ jobs:
2626
steps:
2727
- id: repo-basename
2828
run: 'echo "value=`basename ${{ github.repository }}`" >> $GITHUB_OUTPUT'
29-
- uses: actions/checkout@v4
29+
- name: Checkout the repo
30+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3031
- name: Setup Pages
3132
id: pages
32-
uses: actions/[email protected]
33+
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
3334
- name: Build documentation
3435
uses: elastic/docs-builder@main
3536
with:
3637
prefix: '${{ steps.repo-basename.outputs.value }}'
3738
- name: Upload artifact
38-
uses: actions/[email protected]
39+
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
3940
with:
4041
path: .artifacts/docs/html
4142

4243
- name: Deploy artifact
4344
id: deployment
44-
uses: actions/[email protected]
45+
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
4546

4647
build:
4748
runs-on: ubuntu-latest
@@ -50,14 +51,15 @@ jobs:
5051
major-version: ${{ steps.bootstrap.outputs.major-version }}
5152

5253
steps:
53-
- uses: actions/checkout@v4
54+
- name: Checkout the repo
55+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5456

5557
- name: Bootstrap Action Workspace
5658
id: bootstrap
5759
uses: ./.github/actions/bootstrap
5860

5961
- name: Login to GitHub Container Registry
60-
uses: docker/login-action@v3
62+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
6163
with:
6264
registry: ghcr.io
6365
username: ${{ github.actor }}

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@ jobs:
1616
major-version: ${{ steps.bootstrap.outputs.major-version }}
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- name: Checkout the repo
20+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2021

2122
- name: Bootstrap Action Workspace
2223
id: bootstrap
2324
uses: ./.github/actions/bootstrap
2425

2526
- name: Login to GitHub Container Registry
26-
uses: docker/login-action@v3
27+
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
2728
with:
2829
registry: ghcr.io
2930
username: ${{ github.actor }}
@@ -47,7 +48,8 @@ jobs:
4748
major-version: ${{ steps.bootstrap.outputs.major-version }}
4849

4950
steps:
50-
- uses: actions/checkout@v4
51+
- name: Checkout the repo
52+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
5153

5254
- name: Bootstrap Action Workspace
5355
id: bootstrap

0 commit comments

Comments
 (0)