From 7880c819316b7993a7bf7fdfe055c290969f6182 Mon Sep 17 00:00:00 2001 From: Eval EXEC Date: Thu, 12 Sep 2024 20:47:25 +0800 Subject: [PATCH 1/2] Ignore RUSTSEC-2024-0370 : https://rustsec.org/advisories/RUSTSEC-2024-0370 --- deny.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index fabff48ef2..0add03b4f6 100644 --- a/deny.toml +++ b/deny.toml @@ -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" }, #"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish From 5b5555e4bfd4997575ae37f460eb8171e4303868 Mon Sep 17 00:00:00 2001 From: Eval EXEC Date: Thu, 12 Sep 2024 20:53:17 +0800 Subject: [PATCH 2/2] Upgrade actions/upload-artifact to v4: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ Signed-off-by: Eval EXEC --- .github/workflows/ci_integration_tests_macos.yaml | 2 +- .github/workflows/ci_integration_tests_ubuntu.yaml | 2 +- .github/workflows/ci_integration_tests_windows.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_integration_tests_macos.yaml b/.github/workflows/ci_integration_tests_macos.yaml index ae0fc371ef..2be0e75b8a 100644 --- a/.github/workflows/ci_integration_tests_macos.yaml +++ b/.github/workflows/ci_integration_tests_macos.yaml @@ -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 diff --git a/.github/workflows/ci_integration_tests_ubuntu.yaml b/.github/workflows/ci_integration_tests_ubuntu.yaml index dcb7f3e410..77c2b18c07 100644 --- a/.github/workflows/ci_integration_tests_ubuntu.yaml +++ b/.github/workflows/ci_integration_tests_ubuntu.yaml @@ -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 diff --git a/.github/workflows/ci_integration_tests_windows.yaml b/.github/workflows/ci_integration_tests_windows.yaml index 2ee12d3e9e..edcc871789 100644 --- a/.github/workflows/ci_integration_tests_windows.yaml +++ b/.github/workflows/ci_integration_tests_windows.yaml @@ -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