Skip to content

Commit 033a5cc

Browse files
authored
Merge branch 'main' into update-issue-template
2 parents e4e2da3 + fcecdbf commit 033a5cc

8 files changed

Lines changed: 21 additions & 9 deletions

.github/workflows/archived/bot-pr-auto-draft-on-changes.yml renamed to .github/workflows/archive/bot-pr-auto-draft-on-changes.yml

File renamed without changes.

.github/workflows/pr-check-primary-codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python-version: "3.11"
3636

3737
- name: Install uv
38-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
38+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
3939

4040
- name: Install dependencies
4141
run: |

.github/workflows/pr-check-primary-codeql.yml

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

5858
- name: Install uv
5959
if: matrix.language == 'python'
60-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
60+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
6161
with:
6262
enable-cache: true
6363

.github/workflows/pr-check-secondary-deps-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
cache: "pip"
3838

3939
- name: Install uv
40-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
40+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
4141

4242
- name: Create virtual environment
4343
run: uv venv

.github/workflows/pr-check-secondary-examples.yml

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

2626
- name: Install uv
27-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
27+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
2828

2929
- name: Install dependencies
3030
run: uv sync --all-extras

.github/workflows/pr-check-secondary-tck-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
python-version: "3.14"
4343

4444
- name: Install uv
45-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
45+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
4646
with:
4747
enable-cache: true
4848

.github/workflows/pr-check-secondary-unit-integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
python-version: ${{ matrix.python-version }}
5555

5656
- name: Install uv
57-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
57+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
5858
with:
5959
enable-cache: true
6060

@@ -117,7 +117,7 @@ jobs:
117117
python-version: ${{ matrix.python-version }}
118118

119119
- name: Install uv
120-
uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8.0.0
120+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
121121
with:
122122
enable-cache: true
123123

.github/workflows/publish.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,15 @@ jobs:
6262

6363
steps:
6464
- name: Harden the runner (Audit all outbound calls)
65-
uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0
65+
uses: step-security/harden-runner@6c3c2f2c1c457b00c10c4848d6f5491db3b629df # v2.18.0
6666
with:
6767
egress-policy: audit
6868

69+
- name: Set up Python
70+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
71+
with:
72+
python-version: '3.14'
73+
6974
- name: Download distributions
7075
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
7176
with:
@@ -82,13 +87,20 @@ jobs:
8287
verify-cert-identity: https://github.com/${{ github.repository }}/.github/workflows/publish.yml@refs/tags/${{ github.ref_name }}
8388
verify-oidc-issuer: https://token.actions.githubusercontent.com
8489

90+
- name: Prepare distributions for PyPI upload
91+
run: |
92+
mkdir -p publish-dist
93+
cp dist/*.whl publish-dist/
94+
cp dist/*.tar.gz publish-dist/
95+
8596
- name: Publish to PyPI
8697
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1
8798
with:
99+
packages-dir: publish-dist
88100
skip-existing: true
89101

90102
- name: Upload signed assets to GitHub Release
91-
uses: softprops/action-gh-release@153bb8e04406b158c6c84fc1615b65b24149a1fe # v2.6.1
103+
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0
92104
with:
93105
body: |
94106
## Important notes

0 commit comments

Comments
 (0)