Skip to content
Closed
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/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Continuous Delivery

on:
push:
tags: 'v*' # push events to matching v*, i.e. v1.0, v20.15.10
tags: ['v*'] # push events to matching v*, i.e. v1.0, v20.15.10

env:
PYTHON_DEFAULT_VERSION: "3.12"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
extras: "full"
os: "ubuntu-latest"
# Workaround for https://github.com/actions/setup-python/issues/696
- os: "macos-13"
- os: "macos-14-large"
python-version: 3.9
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions changelog.d/+macos-14-large-ci.infrastructure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update CI to use `macos-14-large` instead of deprecated `macos-13` for amd64-based macOS testing.
Loading