Skip to content

Commit 2a0c0c1

Browse files
committed
CCM-14499: Pinning all GitHub Actions to SHAs
1 parent f433e86 commit 2a0c0c1

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

.github/actions/build-docs/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ runs:
1414
using: "composite"
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 - uses: ./.github/actions/node-install
17+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
18+
- uses: ./.github/actions/node-install
1819
with:
1920
node-version: ${{ inputs.node-version }}
2021
GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }}

.github/actions/build-schemas/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ runs:
88
using: "composite"
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 - uses: actions/setup-node@v4
11+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
12+
- uses: actions/setup-node@v4
1213
with:
1314
node-version: 18
1415

.github/workflows/stage-2-test.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ jobs:
5252
- name: "Checkout code"
5353
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
5454
- name: "Check for schema changes"
55-
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3 id: filter
55+
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
56+
id: filter
5657
with:
5758
filters: |
5859
schemas:
@@ -72,7 +73,8 @@ jobs:
7273
packages: read
7374
steps:
7475
- name: "Checkout code"
75-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 - uses: ./.github/actions/node-install
76+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
77+
- uses: ./.github/actions/node-install
7678
with:
7779
node-version: ${{ inputs.nodejs_version }}
7880
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -92,7 +94,8 @@ jobs:
9294
packages: read
9395
steps:
9496
- name: "Checkout code"
95-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 - uses: ./.github/actions/node-install
97+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
98+
- uses: ./.github/actions/node-install
9699
with:
97100
node-version: ${{ inputs.nodejs_version }}
98101
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -159,7 +162,8 @@ jobs:
159162
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
160163
steps:
161164
- name: "Checkout code"
162-
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 - uses: ./.github/actions/node-install
165+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
166+
- uses: ./.github/actions/node-install
163167
with:
164168
node-version: ${{ inputs.nodejs_version }}
165169
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/stage-3-build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ jobs:
4646
- name: "Checkout code"
4747
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
4848
- name: "Check for relevant changes"
49-
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3 id: filter
49+
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
50+
id: filter
5051
with:
5152
filters: |
5253
docs:

0 commit comments

Comments
 (0)