Skip to content

Commit f5896e2

Browse files
authored
feat: Use full commit SHA hash for dependency (#99)
1 parent 8b2b307 commit f5896e2

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/codspeed.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ jobs:
2626
name: Run benchmarks
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v5
30-
- uses: actions/setup-python@v5
29+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5
30+
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
3131
with:
3232
python-version: "3.13"
3333

3434
- name: Install dependencies
3535
run: pip install -e .[dev]
3636

3737
- name: Run benchmarks
38-
uses: CodSpeedHQ/action@v3
38+
uses: CodSpeedHQ/action@76578c2a7ddd928664caa737f0e962e3085d4e7c #v3
3939
with:
4040
token: ${{ secrets.CODSPEED_TOKEN }}
4141
run: pytest tests/ --codspeed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
python-version: ["3.14", "3.13", "3.12", "3.11", "3.10", "3.9"]
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v5
18+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 #v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
allow-prereleases: true
@@ -33,7 +33,7 @@ jobs:
3333
coverage run --source=tests,cpp_linter_hooks -m pytest -vv
3434
coverage report
3535
coverage xml
36-
- uses: codecov/codecov-action@v5
36+
- uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 #v5
3737
if: matrix.python-version == '3.13'
3838
with:
3939
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)