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/app-build-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
# fall back to the system-provided Python package. Providing "system" as a value
# on macOS or Windows will cause an error.
if: ${{ !startsWith(inputs.runner-os, 'ubuntu') || inputs.python-version != 'system' }}
uses: actions/setup-python@v6.2.0
uses: actions/setup-python@v6.3.0
with:
# This needs to be kept aligned with the input default value
python-version: ${{ inputs.python-version || '3.13' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/app-create-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
# Python matching the system version. We can't use the actual system
# install because we need to install dependencies, which would either
# require the use of sudo, or extra workarounds for user-space packages.
uses: actions/setup-python@v6.2.0
uses: actions/setup-python@v6.3.0
with:
python-version: ${{ startsWith(inputs.runner-os, 'ubuntu') && inputs.python-version == 'system' && steps.config.outputs.system-python-version || inputs.python-version || '3.x' }}
cache: pip
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6.2.0
uses: actions/setup-python@v6.3.0
with:
python-version: "3.x"
cache: pip
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
fail-fast: false
matrix:
framework: [ toga, pyside6 ]
runner-os: [ macos-latest, windows-latest, ubuntu-24.04, ubuntu-24.04-arm ]
runner-os: [ macos-15, windows-latest, ubuntu-24.04, ubuntu-24.04-arm ]

test-verify-apps-briefcase:
name: Verify Briefcase
Expand All @@ -211,7 +211,7 @@ jobs:
fail-fast: false
matrix:
framework: [ toga ]
runner-os: [ macos-15-intel, macos-latest, windows-latest, ubuntu-24.04, ubuntu-24.04-arm ]
runner-os: [ macos-15-intel, macos-15, windows-latest, ubuntu-24.04, ubuntu-24.04-arm ]

test-verify-apps-briefcase-template:
name: Verify Briefcase Template
Expand All @@ -226,7 +226,7 @@ jobs:
fail-fast: false
matrix:
framework: [ toga ]
runner-os: [ macos-latest, windows-latest, ubuntu-24.04, ubuntu-24.04-arm ]
runner-os: [ macos-15, windows-latest, ubuntu-24.04, ubuntu-24.04-arm ]

test-verify-apps-android-templates:
name: Verify Android
Expand All @@ -242,15 +242,15 @@ jobs:
fail-fast: false
matrix:
framework: [ toga ] # toga only
runner-os: [ macos-latest, windows-latest, ubuntu-24.04 ]
runner-os: [ macos-15, windows-latest, ubuntu-24.04 ]

test-verify-apps-iOS-templates:
name: Verify iOS
needs: pre-commit
uses: ./.github/workflows/app-build-verify.yml
with:
repository: beeware/briefcase-iOS-xcode-template
runner-os: macos-latest
runner-os: macos-15
target-platform: iOS
target-format: xcode
framework: ${{ matrix.framework }}
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
uses: ./.github/workflows/app-build-verify.yml
with:
repository: beeware/briefcase-macos-${{ matrix.format }}-template
runner-os: macos-latest
runner-os: macos-15
target-platform: macOS
target-format: ${{ matrix.format }}
framework: ${{ matrix.framework }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
repository: ${{ inputs.repository }}

- name: Set up Python
uses: actions/setup-python@v6.2.0
uses: actions/setup-python@v6.3.0
with:
python-version: ${{ inputs.python-version }}
allow-prereleases: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/towncrier-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v6.2.0
uses: actions/setup-python@v6.3.0
with:
python-version: ${{ inputs.python-version }}
allow-prereleases: true
Expand Down
Loading