Skip to content

Commit 7dd54cb

Browse files
committed
Pin third party actions to commit hashes in composite actions
1 parent 38bf120 commit 7dd54cb

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/actions/setup-chrome/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
runs:
1010
using: 'composite'
1111
steps:
12-
- uses: browser-actions/setup-chrome@v2
12+
- uses: browser-actions/setup-chrome@4f8e94349a351df0f048634f25fec36c3c91eded # v2
1313
id: setup-chrome
1414
with:
1515
chrome-version: ${{ inputs.chrome-version }}

.github/actions/setup-image-env/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ inputs:
1212
runs:
1313
using: 'composite'
1414
steps:
15-
- uses: actions/setup-python@v6
15+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
1616
with:
1717
python-version: ${{ inputs.python-version }}
1818

1919
- name: Install uv
20-
uses: astral-sh/setup-uv@v7
20+
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7
2121
with:
2222
version: ${{ inputs.uv-version }}
2323

2424
- name: Cache apt font packages
25-
uses: actions/cache@v4
25+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
2626
id: apt-cache
2727
with:
2828
path: ~/.cache/apt-fonts

.github/actions/setup-workspace/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
runs:
1010
using: 'composite'
1111
steps:
12-
- uses: actions/setup-node@v6
12+
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
1313
with:
1414
node-version: ${{ inputs.node-version }}
1515
cache: 'npm'
@@ -20,7 +20,7 @@ runs:
2020
env:
2121
NODE_OPTIONS: '--max-old-space-size=4096'
2222

23-
- uses: actions/download-artifact@v8
23+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
2424
with:
2525
name: build-output
2626
path: .

0 commit comments

Comments
 (0)