Skip to content

Commit 9356fe4

Browse files
committed
fix zizmor issues
1 parent befd1c8 commit 9356fe4

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ updates:
1111
directory: "/"
1212
schedule:
1313
interval: "weekly"
14+
cooldown:
15+
default-days: 7
1416
groups:
1517
github-actions:
1618
patterns:
@@ -21,6 +23,8 @@ updates:
2123
directory: "/"
2224
schedule:
2325
interval: "weekly"
26+
cooldown:
27+
default-days: 7
2428
groups:
2529
python-requirements:
2630
patterns:

.github/workflows/devcontainer-ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
24+
with:
25+
persist-credentials: false
2426
- name: Use Node.js 20.x
2527
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2628
with:

.github/workflows/labeler.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Pull Request Labeler
22

33
on:
44
workflow_dispatch:
5-
pull_request_target:
5+
pull_request:
66

77
permissions:
88
contents: read
@@ -13,4 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
16+
with:
17+
persist-credentials: false
1618
- uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88

99
permissions:
1010
contents: read
11+
id-token: write
1112

1213
jobs:
1314
release-pypi:
@@ -27,6 +28,4 @@ jobs:
2728
- name: Build distributions
2829
run: uv build
2930
- name: Upload to PyPI
30-
env:
31-
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
32-
run: uv publish
31+
run: uv publish --trusted-publishing always

0 commit comments

Comments
 (0)