aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorKenjiro Nakayama <nakayamakenjiro@gmail.com>2026-06-15 08:56:05 +0900
committerKenjiro Nakayama <nakayamakenjiro@gmail.com>2026-06-15 09:03:55 +0900
commite2caafd9cf33c46f296666064bb8ed67d5724876 (patch)
tree96b08f19fa4aa7254976f078b9e45ef6d4ef625a /.github/workflows
parentdff64021e5c4f19756ad4e3fd24dab9c0a81befc (diff)
downloadportable-e2caafd9cf33c46f296666064bb8ed67d5724876.tar.gz
portable-e2caafd9cf33c46f296666064bb8ed67d5724876.tar.bz2
portable-e2caafd9cf33c46f296666064bb8ed67d5724876.zip
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.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/coverity.yml2
1 files changed, 1 insertions, 1 deletions
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:
34 PROJECT: "libressl-portable%2Fportable" 34 PROJECT: "libressl-portable%2Fportable"
35 COVERITY_SCAN_TOKEN: "${{ secrets.COVERITY_SCAN_TOKEN }}" 35 COVERITY_SCAN_TOKEN: "${{ secrets.COVERITY_SCAN_TOKEN }}"
36 run: | 36 run: |
37 wget -nv https://scan.coverity.com/download/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$PROJECT" -O coverity_tool.tar.gz 37 wget -nv https://scan.coverity.com/download/cxx/linux64 --post-data "token=$COVERITY_SCAN_TOKEN&project=$PROJECT" -O coverity_tool.tar.gz
38 mkdir coverity_tool 38 mkdir coverity_tool
39 tar xzf coverity_tool.tar.gz --strip 1 -C coverity_tool 39 tar xzf coverity_tool.tar.gz --strip 1 -C coverity_tool
40 40