Skip to content

Commit

Permalink
Merge pull request #2964 from itowlson/another-day-at-the-treadmill
Browse files Browse the repository at this point in the history
Work around breaking change in `cross`
  • Loading branch information
itowlson authored Dec 16, 2024
2 parents 74681e0 + 491bc73 commit 1f08962
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/spin-ci-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
type: bool
rust-version:
description: 'Rust version to setup'
default: '1.79'
default: '1.81'
required: false
type: string

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

env:
CARGO_TERM_COLOR: always
RUST_VERSION: 1.79
RUST_VERSION: 1.81

jobs:
dependency-review:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
concurrency: ${{ github.workflow }}-${{ github.ref }}

env:
RUST_VERSION: 1.79
RUST_VERSION: 1.81

jobs:
build-and-sign:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
license = "Apache-2.0 WITH LLVM-exception"
homepage = "https://developer.fermyon.com/spin"
repository = "https://github.com/fermyon/spin"
rust-version = "1.79"
rust-version = "1.81"

[dependencies]
anyhow = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions tests/integration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ mod integration_tests {

#[test]
#[cfg(feature = "extern-dependencies-tests")]
#[allow(dependency_on_unit_never_type_fallback)]
/// Test that basic redis trigger support works
fn redis_smoke_test() -> anyhow::Result<()> {
use anyhow::Context;
Expand Down
1 change: 1 addition & 0 deletions tests/testcases/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ pub fn http_smoke_test_template_with_route(

/// Run a smoke test for a `spin new` redis template
#[cfg(feature = "extern-dependencies-tests")]
#[allow(dependency_on_unit_never_type_fallback)]
pub fn redis_smoke_test_template(
template_name: &str,
template_url: Option<&str>,
Expand Down

0 comments on commit 1f08962

Please sign in to comment.