Skip to content

Increasing uptime counter to 64 bits #73

Increasing uptime counter to 64 bits

Increasing uptime counter to 64 bits #73

Workflow file for this run

name: Flawfinder Code Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
flawfinder:
name: Run Flawfinder
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install Flawfinder
run: |
pip install flawfinder
- name: Run Flawfinder
run: |
flawfinder . > flawfinder.log
- name: Upload Flawfinder results
if: always()
uses: actions/upload-artifact@v4
with:
name: flawfinder-report
path: flawfinder.log
- name: Display Flawfinder results
if: always()
run: cat flawfinder.log