From 8f6ece2c3246904075545ec2f64d88d4a9ce4e58 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 29 Jun 2025 15:49:58 -0400 Subject: [PATCH 1/2] Updated to rust 1.88 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8b28de7..0fc4ed8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "icarus_auth" version = "0.3.10" edition = "2024" -rust-version = "1.86" +rust-version = "1.88" [dependencies] axum = { version = "0.8.3" } -- 2.43.0 From 5c2a2092471c662a773c1b848e5b9b3e7c3c2b45 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 29 Jun 2025 15:50:10 -0400 Subject: [PATCH 2/2] Workflow changes --- .gitea/workflows/tag_release.yml | 4 ++-- .gitea/workflows/workflow.yml | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/tag_release.yml b/.gitea/workflows/tag_release.yml index 9bcd646..1e8bf7c 100644 --- a/.gitea/workflows/tag_release.yml +++ b/.gitea/workflows/tag_release.yml @@ -17,7 +17,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.86.0 + toolchain: 1.88.0 components: cargo - name: Extract Version from Cargo.toml @@ -50,4 +50,4 @@ jobs: body: | Release of version ${{ steps.version.outputs.project_tag_release }} # draft: false - # prerelease: ${{ startsWith(github.ref, 'v') == false }} # prerelease if not a valid release tag \ No newline at end of file + # prerelease: ${{ startsWith(github.ref, 'v') == false }} # prerelease if not a valid release tag diff --git a/.gitea/workflows/workflow.yml b/.gitea/workflows/workflow.yml index aa3fded..2720cea 100644 --- a/.gitea/workflows/workflow.yml +++ b/.gitea/workflows/workflow.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.86.0 + toolchain: 1.88.0 - run: | mkdir -p ~/.ssh echo "${{ secrets.MYREPO_TOKEN }}" > ~/.ssh/icarus_models_deploy_key @@ -53,7 +53,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.86.0 + toolchain: 1.88.0 # --- Add this step for explicit verification --- - name: Verify Docker Environment run: | @@ -94,7 +94,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.86.0 + toolchain: 1.88.0 - run: rustup component add rustfmt - run: | mkdir -p ~/.ssh @@ -113,7 +113,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.86.0 + toolchain: 1.88.0 - run: rustup component add clippy - run: | mkdir -p ~/.ssh @@ -132,7 +132,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: - toolchain: 1.86.0 + toolchain: 1.88.0 - run: | mkdir -p ~/.ssh echo "${{ secrets.MYREPO_TOKEN }}" > ~/.ssh/icarus_models_deploy_key -- 2.43.0