Skip to content

Commit 72095d2

Browse files
committed
[actions] fix review issues
1 parent cfbdae6 commit 72095d2

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,21 @@ jobs:
1919
id-token: write
2020

2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v7
23+
with:
24+
persist-credentials: false
2325
- name: Set up Python
24-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2527
with:
2628
python-version: "3.13"
27-
cache: pipenv
2829

2930
- name: Install pipenv
3031
run: |
3132
python -m pip install --upgrade pipenv
3233
3334
- name: Install dependencies
3435
run: |
35-
pipenv install --dev
36+
pipenv sync --dev
3637
3738
- name: Build package
3839
run: |

0 commit comments

Comments
 (0)