Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#73)
Browse files Browse the repository at this point in the history
* Bump actions/checkout from 3 to 4

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: mae.kasza <[email protected]>
  • Loading branch information
dependabot[bot] and MaeIsBad authored Sep 13, 2023
1 parent bc9554e commit 03fec4f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions veil-tests/src/compile_tests/succeed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ fn test_redact_multiple_attributes() {
#[redact]
#[serde(default)]
bool,
bool,
#[serde(default)] bool,
);

#[derive(Serialize, Deserialize, Redact, RandGen)]
Expand All @@ -253,7 +253,7 @@ fn test_redact_multiple_attributes() {
#[serde(default)]
#[redact(partial)]
bool,
bool,
#[serde(default)] bool,
);

#[derive(Serialize, Deserialize, Redact, RandGen)]
Expand Down

0 comments on commit 03fec4f

Please sign in to comment.