Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update github actions upgrade #148

Merged
merged 5 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
toolchain: stable
- name: Run release-plz release
uses: MarcoIeni/release-plz-action@f0fdffff1ff475195a1638e487cf93719e065a8e # v0.5
uses: MarcoIeni/release-plz-action@2d634174257b7f46339e7533865a910743a0c5c9 # v0.5
with:
command: release
env:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
with:
toolchain: stable
- name: Run release-plz PR task
uses: MarcoIeni/release-plz-action@f0fdffff1ff475195a1638e487cf93719e065a8e # v0.5
uses: MarcoIeni/release-plz-action@2d634174257b7f46339e7533865a910743a0c5c9 # v0.5
with:
command: release-pr
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
toolchain: stable
target: wasm32-wasi
- uses: taiki-e/install-action@f725b9adf3838dea66890ca9932712709858c409
- uses: taiki-e/install-action@c4bf614c2fb42375baf4f51283c33befce095fc5
with:
tool: wasmtime,cargo-wasi
- env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ jobs:
# Upload the results to GitHub's code scanning dashboard (optional).
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f # v3.27.4
uses: github/codeql-action/upload-sarif@f09c1c0a94de965c15400f5634aa42fac8fb8f88 # v3.27.5
with:
sarif_file: results.sarif
1 change: 1 addition & 0 deletions src/evaluator/functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ pub struct FunctionContext<'a, 'e> {
pub arena: &'a Bump,
}

#[allow(clippy::needless_lifetimes)]
impl<'a, 'e> FunctionContext<'a, 'e> {
pub fn evaluate_function(
&self,
Expand Down
1 change: 1 addition & 0 deletions src/evaluator/value/iterator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ impl<'a> Iterator for MemberIterator<'a> {
}
}

#[allow(clippy::needless_lifetimes)]
impl<'a> DoubleEndedIterator for MemberIterator<'a> {
fn next_back(&mut self) -> Option<Self::Item> {
if self.back_done {
Expand Down
1 change: 1 addition & 0 deletions src/evaluator/value/range.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ impl<'a> Index<usize> for Range<'a> {
}
}

#[allow(clippy::needless_lifetimes)]
impl<'a> PartialEq<Range<'_>> for Range<'a> {
fn eq(&self, other: &Range<'_>) -> bool {
self.start == other.start && self.end == other.end
Expand Down
Loading