Skip to content

Commit f37a420

Browse files
authored
Merge pull request #3304 from itowlson/rust-1.90-will-solve-our-crashing-build-issue-till-promised-you-all-heard-him
Try Rust 1.90 to fix CI woe
2 parents 7e3c1a8 + 2474d55 commit f37a420

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/actions/spin-ci-dependencies/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
type: bool
99
rust-version:
1010
description: 'Rust version to setup'
11-
default: '1.87'
11+
default: '1.90'
1212
required: false
1313
type: string
1414

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717

1818
env:
1919
CARGO_TERM_COLOR: always
20-
RUST_VERSION: 1.87
20+
RUST_VERSION: '1.90'
2121

2222
jobs:
2323
dependency-review:
@@ -153,7 +153,6 @@ jobs:
153153
with:
154154
rust: true
155155
rust-wasm: true
156-
rust-cache: true
157156
nomad: true
158157

159158
- name: Check disk space (Before)

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
concurrency: ${{ github.workflow }}-${{ github.ref }}
1212

1313
env:
14-
RUST_VERSION: 1.87
14+
RUST_VERSION: '1.90'
1515

1616
jobs:
1717
build-and-sign:

crates/trigger-http/src/server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ impl<F: RuntimeFactors> HttpServer<F> {
8383
.app()
8484
.trigger_configs::<HttpTriggerConfig>("http")?
8585
.into_iter()
86-
.map(|(trigger_id, config)| (config.lookup_key(trigger_id).map(|k| (k, config))))
86+
.map(|(trigger_id, config)| config.lookup_key(trigger_id).map(|k| (k, config)))
8787
.collect::<Result<Vec<_>, _>>()?;
8888

8989
// Build router

examples/spin-timer/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ pub struct TimerTrigger {
2727
}
2828

2929
// Picks out the timer entry from the application-level trigger settings
30+
#[allow(dead_code)]
3031
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
3132
struct TriggerMetadataParent {
3233
timer: Option<TriggerMetadata>,

0 commit comments

Comments
 (0)