Increasing uptime counter to 64 bits #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |