Skip to content

Commit ded4f8a

Browse files
thrashr888claude
andcommitted
fix: bump CI Rust to 1.87 for let-chains, replace retired macos-13
let_chains was stabilized in Rust 1.87, not 1.85 (which only added edition 2024). Also replaces retired macos-13 runner with macos-15-intel. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 7797555 commit ded4f8a

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88

99
env:
1010
CARGO_TERM_COLOR: always
11-
# Rust 1.85+ required for edition 2024
12-
RUST_VERSION: "1.85"
11+
# Rust 1.87+ required for let-chains (edition 2024)
12+
RUST_VERSION: "1.87"
1313

1414
jobs:
1515
check:
@@ -98,7 +98,7 @@ jobs:
9898
- os: macos-latest
9999
target: aarch64-apple-darwin
100100
artifact: agentkernel-darwin-arm64
101-
- os: macos-13
101+
- os: macos-15-intel
102102
target: x86_64-apple-darwin
103103
artifact: agentkernel-darwin-x64
104104
steps:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77

88
env:
99
CARGO_TERM_COLOR: always
10-
# Rust 1.85+ required for edition 2024
11-
RUST_VERSION: "1.85"
10+
# Rust 1.87+ required for let-chains (edition 2024)
11+
RUST_VERSION: "1.87"
1212

1313
permissions:
1414
contents: write
@@ -29,7 +29,7 @@ jobs:
2929
- os: macos-latest
3030
target: aarch64-apple-darwin
3131
artifact: agentkernel-darwin-arm64
32-
- os: macos-13
32+
- os: macos-15-intel
3333
target: x86_64-apple-darwin
3434
artifact: agentkernel-darwin-x64
3535
steps:

0 commit comments

Comments
 (0)