Rust version behind

My Rust deploys have suddenly stopped working this month.

I believe the reason to be the rust version got downgraded since, according to deploy logs it’s using 1.73.0

stable-x86_64-unknown-linux-gnu unchanged - rustc 1.73.0 (cc66ad468 2023-10-03)

When it’s documented to be using stable(1.76.0), and I don’t see anything about this change in Rust in recent changelogs

Do you have a $RUSTUP_TOOLCHAIN environment variable, or rust-toolchain file in your repository?

I have neither…
last successful deploy on February 12, 2024 at 4:33 AM
failed deploy on March 16, 2024 at 4:24 PM

last commit changes…

.github/workflows/deploy.yaml

  • name: Deploy shuttle
    uses: shuttle-hq/deploy-action@main
    with:
    deploy-key: ${{ secrets.DEPLOY_KEY }}
    working-directory: “rust”
     allow-dirty: "true"
     secrets: |
       MONGODB_URI = '${{ secrets.MONGODB_URI }}'
       MONGODB_DB = '${{ secrets.MONGODB_DB }}'
       MONGODB_USER = '${{ secrets.MONGODB_USER }}'
       MONGODB_PASS = '${{ secrets.MONGODB_PASS }}'

Cargo.toml

shuttle-secrets = ‘0.41.0’

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.