Skip to content

Commit 5fe0103

Browse files
[Github] Hash Pin Remaining Workflows
There were a couple workflows that were not hash pinning some of their action dependencies. This ensures that we are following our own CI best practices: https://llvm.org/docs/CIBestPractices.html.
1 parent b33dddd commit 5fe0103

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci-python-unit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515
if: github.repository_owner == 'llvm'
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v4
19-
- uses: actions/setup-python@v6
18+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2020
with:
2121
python-version: '3.14'
2222
cache: 'pip'

.github/workflows/litmus-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository_owner == 'llvm'
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919
- name: Install dependencies
2020
run: |
2121
sudo apt-get update

.github/workflows/tf-formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
if: github.repository_owner == 'llvm'
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
1919
- name: Install Dependencies
2020
run: |
2121
sudo apt-get update

0 commit comments

Comments
 (0)