Skip to content

Commit fc538ae

Browse files
authored
fix: update actions/setup-python to v6.0.0 (#69)
Update actions/setup-python action to use the correct commit hash for v6.0.0 release (e797f83bcb11b83ae66e0230d6156d7c80228e7c). The previous hash (0b93645e9fea7318ecaed2b359559ac225c90a20) does not exist in the public repository and prevented workflows from running.
1 parent 9a66180 commit fc538ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2727
- name: Setup Python
28-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a20 # v6
28+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2929
with:
3030
python-version: '3.13'
3131
cache: 'pip'

.github/workflows/pylint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2626
- name: Set up Python
27-
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a20 # v6
27+
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
2828
with:
2929
python-version: ${{ env.PYTHON_VERSION }}
3030
- name: Install global dependencies

0 commit comments

Comments
 (0)