mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-09 09:30:55 +02:00
844852202b
GitHub Actions now emits "Node.js 20 actions are deprecated" warnings: actions are forced to Node.js 24 by default starting 2026-06-16, and Node.js 20 is removed from the runners on 2026-09-16. Update every JavaScript action referenced by the workflows and the local composite actions to the lowest release that runs on Node.js 24: actions/checkout v4 -> v5 actions/checkout (SHA pin) v4.1.7 -> v5 actions/upload-artifact v4 -> v6 (v5 still Node.js 20) actions/download-artifact v4 -> v7 (v5/v6 still Node.js 20) actions/cache[/restore|/save] v4 -> v5 actions/setup-python v5 -> v6 actions/github-script v7 -> v8 docker/setup-buildx-action v3 -> v4 docker/build-push-action v5 -> v7 (v6 still Node.js 20) docker/login-action v3 -> v4 microsoft/setup-msbuild v2 -> v3 open-watcom/setup-watcom v0 -> v1 Actions already running on Node.js 24 (jwlawson/actions-setup-cmake, shogo82148/actions-setup-perl, msys2/setup-msys2, dorny/paths-filter) are left unchanged. These bumps are runtime-only; no workflow uses an input or output removed by the new majors, and v4-format artifacts remain compatible across the upload v6 / download v7 backends.
54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
name: Coverity Scan master branch
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 1-5'
|
|
- cron: '0 0 * * 0'
|
|
- cron: '0 12 * * 0'
|
|
|
|
jobs:
|
|
coverity:
|
|
if: github.repository_owner == 'wolfssl'
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
ref: master
|
|
|
|
- name: Configure wolfSSL with enable-all M-F
|
|
if: github.event.schedule == '0 0 * * 1-5'
|
|
run: |
|
|
./autogen.sh
|
|
./configure --enable-all
|
|
|
|
- name: Configure wolfSSL with enable-all enable-smallstack Sun at 00:00
|
|
if: github.event.schedule == '0 0 * * 0'
|
|
run: |
|
|
./autogen.sh
|
|
./configure --enable-all --enable-smallstack
|
|
|
|
- name: Configure wolfSSL with bigendian Sun at 12:00
|
|
if: github.event.schedule == '0 12 * * 0'
|
|
run: |
|
|
./autogen.sh
|
|
./configure --enable-all CFLAGS="-DBIG_ENDIAN_ORDER"
|
|
|
|
- name: Check secrets
|
|
env:
|
|
token_var: ${{ secrets.COVERITY_SCAN_TOKEN }}
|
|
email_var: ${{ secrets.COVERITY_SCAN_EMAIL }}
|
|
run: |
|
|
token_len=${#token_var}
|
|
echo "$token_len"
|
|
email_len=${#email_var}
|
|
echo "$email_len"
|
|
|
|
- uses: vapier/coverity-scan-action@v1
|
|
with:
|
|
build_language: 'cxx'
|
|
project: "wolfSSL/wolfssl"
|
|
token: ${{ secrets.COVERITY_SCAN_TOKEN }}
|
|
email: ${{ secrets.COVERITY_SCAN_EMAIL }}
|
|
command: "make"
|