Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#71)
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)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Fixed clippy warning

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Victor Koenders <[email protected]>
  • Loading branch information
dependabot[bot] and Victor Koenders authored Oct 16, 2023
1 parent 7eb6765 commit 6bbe14c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"steps": [
{
"uses": "actions/checkout@v3",
"uses": "actions/checkout@v4",
"name": "Checkout"
},
{
Expand Down Expand Up @@ -75,7 +75,7 @@
},
"steps": [
{
"uses": "actions/checkout@v3",
"uses": "actions/checkout@v4",
"name": "Checkout"
},
{
Expand Down Expand Up @@ -109,7 +109,7 @@
},
"steps": [
{
"uses": "actions/checkout@v3",
"uses": "actions/checkout@v4",
"name": "Checkout"
},
{
Expand All @@ -135,7 +135,7 @@
"runs-on": "ubuntu-latest",
"steps": [
{
"uses": "actions/checkout@v3",
"uses": "actions/checkout@v4",
"name": "Checkout"
},
{
Expand Down Expand Up @@ -171,7 +171,7 @@
"runs-on": "ubuntu-latest",
"steps": [
{
"uses": "actions/checkout@v3",
"uses": "actions/checkout@v4",
"name": "Checkout"
},
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"runs-on": "ubuntu-latest",
"steps": [
{
"uses": "actions/checkout@v3"
"uses": "actions/checkout@v4"
},
{
"uses": "actions-rs/audit-check@v1",
Expand Down
4 changes: 2 additions & 2 deletions src/parse/generics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ impl GenericConstraints {
builder.ident(generic.ident.clone());
builder.punct(':');
builder.push_parsed(constraint)?;
self.constraints.extend(builder.stream.into_iter());
self.constraints.extend(builder.stream);

Ok(())
}
Expand All @@ -575,7 +575,7 @@ impl GenericConstraints {
builder.punct(',');
}
builder.push_parsed(constraint)?;
self.constraints.extend(builder.stream.into_iter());
self.constraints.extend(builder.stream);

Ok(())
}
Expand Down

0 comments on commit 6bbe14c

Please sign in to comment.