Skip to content

Commit f9e45db

Browse files
[3.12] gh-145098: Use macos-15-intel instead of unstable macos-26-intel in {jit,tail-call}.yml (GH-148126)
(cherry picked from commit bce96a1) Co-authored-by: Stan Ulbrych <stan@python.org> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent 24e899c commit f9e45db

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ on:
1111
- 'main'
1212
- '3.*'
1313

14-
permissions:
15-
contents: read
14+
permissions: {}
1615

1716
concurrency:
1817
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}-reusable
@@ -224,16 +223,16 @@ jobs:
224223
strategy:
225224
fail-fast: false
226225
matrix:
227-
# macos-26 is Apple Silicon, macos-26-intel is Intel.
228-
# macos-26-intel only runs tests against the GIL-enabled CPython.
226+
# macos-26 is Apple Silicon, macos-15-intel is Intel.
227+
# macos-15-intel only runs tests against the GIL-enabled CPython.
229228
os:
230229
- macos-26
231-
- macos-26-intel
230+
- macos-15-intel
232231
free-threading:
233232
- false
234233
# - true
235234
exclude:
236-
- os: macos-26-intel
235+
- os: macos-15-intel
237236
free-threading: true
238237
uses: ./.github/workflows/reusable-macos.yml
239238
with:

.github/workflows/lint.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: Lint
22

33
on: [push, pull_request, workflow_dispatch]
44

5-
permissions:
6-
contents: read
5+
permissions: {}
76

87
env:
98
FORCE_COLOR: 1

.github/workflows/mypy.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ on:
1212
- ".github/workflows/mypy.yml"
1313
workflow_dispatch:
1414

15-
permissions:
16-
contents: read
15+
permissions: {}
1716

1817
env:
1918
PIP_DISABLE_PIP_VERSION_CHECK: 1

.github/workflows/new-bugs-announce-notifier.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ on:
55
types:
66
- opened
77

8-
permissions:
9-
issues: read
8+
permissions: {}
109

1110
jobs:
1211
notify-new-bugs-announce:
1312
runs-on: ubuntu-latest
13+
permissions:
14+
issues: read
1415
timeout-minutes: 10
1516
steps:
1617
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0

.github/workflows/require-pr-label.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
pull_request:
55
types: [opened, reopened, labeled, unlabeled, synchronize]
66

7+
permissions: {}
8+
79
jobs:
810
label:
911
name: DO-NOT-MERGE / unresolved review

.github/workflows/stale.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
schedule:
55
- cron: "0 0 * * *"
66

7+
permissions: {}
8+
79
jobs:
810
stale:
911
if: github.repository_owner == 'python'

.github/workflows/verify-ensurepip-wheels.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ on:
1313
- '.github/workflows/verify-ensurepip-wheels.yml'
1414
- 'Tools/build/verify_ensurepip_wheels.py'
1515

16-
permissions:
17-
contents: read
16+
permissions: {}
1817

1918
concurrency:
2019
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/verify-expat.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ on:
1111
- 'Modules/expat/**'
1212
- '.github/workflows/verify-expat.yml'
1313

14-
permissions:
15-
contents: read
14+
permissions: {}
1615

1716
concurrency:
1817
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

0 commit comments

Comments
 (0)