From e2caafd9cf33c46f296666064bb8ed67d5724876 Mon Sep 17 00:00:00 2001 From: Kenjiro Nakayama Date: Mon, 15 Jun 2026 08:56:05 +0900 Subject: ci: fix Coverity build tool download URL Coverity Scan now serves the C/C++ Linux build tool from /download/cxx/linux64. The old /download/linux64 endpoint returns 404, causing the Coverity workflow to fail before the build starts. Update the workflow to use the C/C++ download endpoint. --- .github/workflows/coverity.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 068e73b..f1d6c88 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -34,7 +34,7 @@ jobs: PROJECT: "libressl-portable%2Fportable" COVERITY_SCAN_TOKEN: "${{ secrets.COVERITY_SCAN_TOKEN }}" run: | - wget -nv https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$PROJECT" -O coverity_tool.tar.gz + wget -nv https://scan.coverity.com/download/cxx/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$PROJECT" -O coverity_tool.tar.gz mkdir coverity_tool tar xzf coverity_tool.tar.gz --strip 1 -C coverity_tool -- cgit v1.2.3-55-g6feb