Skip to content

Commit

Permalink
ci: update rust toolchain to 1.83.0
Browse files Browse the repository at this point in the history
Some dependencies like [email protected] requires a rust toolchain version
over 1.81.0. Thus we update this to 1.83.0 to track the latest rust
toolchain.

This commit also fixes lint error introduced by new version of rust
toolchain.

Signed-off-by: Xynnn007 <[email protected]>
  • Loading branch information
Xynnn007 committed Dec 17, 2024
1 parent d4e6c3b commit 769a28c
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/as-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: TEE=${{ matrix.restful_tee_enum }} Generate Evidence Dynamically=${{ matrix.generate_evidence }}
runs-on: ${{ matrix.runner }}
env:
RUSTC_VERSION: 1.76.0
RUSTC_VERSION: 1.83.0
GRPC_TEE_ENUM: ${{ matrix.grpc_tee_enum }}
RESTFUL_TEE_ENUM: ${{ matrix.restful_tee_enum }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/as-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Check
runs-on: ubuntu-22.04
env:
RUSTC_VERSION: 1.76.0
RUSTC_VERSION: 1.83.0
steps:
- name: Code checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kbs-docker-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
e2e-test:
runs-on: ubuntu-latest
env:
RUSTC_VERSION: 1.76.0
RUSTC_VERSION: 1.83.0
steps:
- name: Checkout KBS
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kbs-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
build-binaries:
runs-on: ubuntu-22.04
env:
RUSTC_VERSION: 1.76.0
RUSTC_VERSION: 1.83.0
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kbs-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
env:
RUSTC_VERSION: 1.76.0
RUSTC_VERSION: 1.83.0
runs-on: ubuntu-22.04

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push-kbs-client-to-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- x86_64
- s390x
env:
RUSTC_VERSION: 1.76.0
RUSTC_VERSION: 1.83.0
runs-on: ${{ matrix.arch == 'x86_64' && 'ubuntu-22.04' || 's390x' }}
permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion rvps/src/extractors/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use super::{Message, ReferenceValue};
/// reference value (degest, s.t. hash value and name of the artifact)
/// from the provenance. If the verification fails, no reference value
/// will be extracted.
///
/// `Extractors` defines the interfaces of Extractors.
pub trait Extractors {
/// Process the message, e.g. verifying
Expand Down

0 comments on commit 769a28c

Please sign in to comment.