Skip to content

Commit f07b400

Browse files
[3.11] gh-145098: Use macos-15-intel instead of unstable macos-26-…intel in {jit,tail-call}.yml (GH-148126) (#148138)
* [3.11] 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> * macos-26-intel -> macos-15-intel --------- Co-authored-by: Stan Ulbrych <stan@python.org>
1 parent 7d2ecdf commit f07b400

File tree

8 files changed

+14
-17
lines changed

8 files changed

+14
-17
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 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

.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/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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ on:
44
pull_request:
55
types: [opened, reopened, labeled, unlabeled, synchronize]
66

7-
permissions:
8-
issues: write
9-
pull-requests: write
7+
permissions: {}
108

119
jobs:
1210
label:
1311
name: DO-NOT-MERGE / unresolved review
1412
if: github.repository_owner == 'python'
1513
runs-on: ubuntu-latest
14+
permissions:
15+
pull-requests: read
1616
timeout-minutes: 10
1717

1818
steps:

.github/workflows/reusable-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
os: [
2828
"macos-26", # Apple Silicon
29-
"macos-26-intel", # Intel
29+
"macos-15-intel", # Intel
3030
]
3131
runs-on: ${{ matrix.os }}
3232
steps:

.github/workflows/stale.yml

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

7-
permissions:
8-
pull-requests: write
7+
permissions: {}
98

109
jobs:
1110
stale:
1211
if: github.repository_owner == 'python'
13-
1412
runs-on: ubuntu-latest
13+
permissions:
14+
pull-requests: write
1515
timeout-minutes: 10
1616

1717
steps:

.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/scripts/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)