Skip to content

Commit

Permalink
Merge pull request #4644 from eval-exec/exec/ignore-proc-macro-error
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangsoledad committed Sep 13, 2024
2 parents 18c68f5 + 5b5555e commit d14e23b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_integration_tests_macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
shell: bash
- name: upload log files
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}_integration.log
path: ${{ env.CKB_INTEGRATION_TEST_TMP }}/integration.log
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_integration_tests_ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
shell: bash
- name: upload log files
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}_integration.log
path: ${{ env.CKB_INTEGRATION_TEST_TMP }}/integration.log
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_integration_tests_windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
shell: bash
- name: upload log files
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}_integration.log
path: ${{ env.CKB_INTEGRATION_TEST_TMP }}/integration.log
Expand Down
5 changes: 4 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@ ignore = [
"RUSTSEC-2022-0090",
# https://rustsec.org/advisories/RUSTSEC-2024-0336
# `rustls::ConnectionCommon::complete_io` could fall into an infinite loop based on network input
"RUSTSEC-2024-0336"
"RUSTSEC-2024-0336",
# Advisory: https://rustsec.org/advisories/RUSTSEC-2024-0370
# proc-macro-error's maintainer seems to be unreachable, with no commits for 2 years, no releases pushed for 4 years, and no activity on the GitLab repo or response to email.
"RUSTSEC-2024-0370"
#"RUSTSEC-0000-0000",
#{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
#"[email protected]", # you can also ignore yanked crate versions if you wish
Expand Down

0 comments on commit d14e23b

Please sign in to comment.