Skip to content

Commit 0bec17d

Browse files
fix(ci): Correct commit SHA for actions/cache
This commit corrects the commit SHA for the `actions/cache` GitHub Action in the `ci.yml` workflow. The previous SHA was invalid, causing the CI pipeline to fail with an "action could not be found" error. The invalid SHA has been replaced with `0057852bfaa89a56745cba8c7296529d2fc39830`, which corresponds to the latest stable release of `actions/cache` (v4.3.0). This will resolve the CI failure.
1 parent b3b891c commit 0bec17d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: poetry config virtualenvs.in-project true
4949

5050
- name: Cache dependencies
51-
uses: actions/cache@88522ab9f3933e4449e32f3259d8133a9d83fff1
51+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
5252
with:
5353
path: .venv
5454
key: v1-${{ runner.os }}-python-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)