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
2 changes: 1 addition & 1 deletion .github/workflows/auto-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
python-version: ["3.12", "3.13"]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
Expand All @@ -25,7 +25,7 @@ jobs:
run: |
python application/setup.py build
- name: Store the built application
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: splitguides-app
path: build/SplitGuides_v*.zip
Expand All @@ -42,12 +42,12 @@ jobs:
id-token: write # IMPORTANT: mandatory for sigstore
steps:
- name: Download the zipapp
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: splitguides-app
path: dist/
- name: Sign the zipapp with Sigstore
uses: sigstore/gh-action-sigstore-python@v3.1.0
uses: sigstore/gh-action-sigstore-python@v3.2.0
with:
release-signing-artifacts: false
inputs: >-
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish_to_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
Expand All @@ -26,7 +26,7 @@ jobs:
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: python-package-distributions
path: dist/
Expand All @@ -45,7 +45,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: python-package-distributions
path: dist/
Expand All @@ -66,12 +66,12 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: python-package-distributions
path: dist/
- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@v3.1.0
uses: sigstore/gh-action-sigstore-python@v3.2.0
with:
release-signing-artifacts: false
inputs: >-
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
Expand All @@ -28,7 +28,7 @@ jobs:
run: >-
python application/setup.py build
- name: Store the built app
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: splitguides-app-dev
path: build/SplitGuides_v*.zip
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Python
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: python-package-distributions
path: dist/
Expand Down