Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
update github workflow runners
  • Loading branch information
stonebig committed Mar 28, 2026
commit df994d842fa3ab4c2b1ac6c60d97aa5a1fd1b456
8 changes: 4 additions & 4 deletions .github/workflows/build_wppm_prod_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
os: [windows-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: ${{ env.python-version }}
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
run: |
ls -1 wheelhouse

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: artifacts-${{ matrix.os }}
path: ./dist/wppm*.whl
Expand All @@ -80,7 +80,7 @@ jobs:
# This permission is required for pypi's "trusted publisher" feature
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
pattern: artifacts-*
path: dist
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_wppm_test_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
os: [windows-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
persist-credentials: false

- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
name: Install Python
with:
python-version: ${{ env.python-version }}
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
run: |
ls -1 wheelhouse

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: artifacts-${{ matrix.os }}
path: ./dist/wppm*.whl
Expand All @@ -80,7 +80,7 @@ jobs:
# This permission is required for pypi's "trusted publisher" feature
id-token: write
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v6
with:
pattern: artifacts-*
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/github_workflows_build-2026_02.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set Python version configuration
id: python_config
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:

- name: Upload artifacts
if: env.WINPYREQUIREMENTS != ''
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.ARTIFACT_NAME }}
path: publish_output
Expand Down