diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index bf133e9e..0b4582b6 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -11,7 +11,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: install cargo-release uses: taiki-e/install-action@v2 with: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0f333f2..330190b9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: name: "Continuous Integration / lint" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: Swatinem/rust-cache@v2 - name: Build run: cargo build --workspace --all-features @@ -32,7 +32,7 @@ jobs: name: "Continuous Integration / test" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: Swatinem/rust-cache@v2 - name: Run tests for no features run: cargo test --all diff --git a/veil-tests/src/compile_tests/succeed.rs b/veil-tests/src/compile_tests/succeed.rs index 0c6ae589..80b83c78 100644 --- a/veil-tests/src/compile_tests/succeed.rs +++ b/veil-tests/src/compile_tests/succeed.rs @@ -243,7 +243,7 @@ fn test_redact_multiple_attributes() { #[redact] #[serde(default)] bool, - bool, + #[serde(default)] bool, ); #[derive(Serialize, Deserialize, Redact, RandGen)] @@ -253,7 +253,7 @@ fn test_redact_multiple_attributes() { #[serde(default)] #[redact(partial)] bool, - bool, + #[serde(default)] bool, ); #[derive(Serialize, Deserialize, Redact, RandGen)]