We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfbdae6 commit 72095d2Copy full SHA for 72095d2
1 file changed
.github/workflows/publish.yml
@@ -19,20 +19,21 @@ jobs:
19
id-token: write
20
21
steps:
22
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v7
23
+ with:
24
+ persist-credentials: false
25
- name: Set up Python
- uses: actions/setup-python@v5
26
+ uses: actions/setup-python@v6
27
with:
28
python-version: "3.13"
- cache: pipenv
29
30
- name: Install pipenv
31
run: |
32
python -m pip install --upgrade pipenv
33
34
- name: Install dependencies
35
- pipenv install --dev
36
+ pipenv sync --dev
37
38
- name: Build package
39
0 commit comments