Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-alerts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# X.X.X - Latest version available at: https://github.com/kunalnagarco/action-cve/releases
- uses: kunalnagarco/action-cve@v1.12.36
- uses: kunalnagarco/action-cve@v1.17.3
Comment thread
rizaziz marked this conversation as resolved.
Outdated
with:
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
slack_webhook: ${{ secrets.SLACK_WEBHOOK }}
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
MAYHEM_TOKEN: ${{ secrets.MAYHEM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
Comment thread
rizaziz marked this conversation as resolved.
Outdated
with:
# fetch entire history to compute diffs between jobs
fetch-depth: 0
Expand All @@ -28,7 +28,7 @@ jobs:
# make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
Comment thread
rizaziz marked this conversation as resolved.
Outdated
with:
# fetch entire history to compute diffs between jobs
fetch-depth: 0
Expand All @@ -44,7 +44,7 @@ jobs:
args: --image forallsecure/lighttpd:vulnerable --duration 60

- name: Upload SARIF file(s)
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
Comment thread
rizaziz marked this conversation as resolved.
with:
sarif_file: out/sarif

Expand All @@ -57,7 +57,7 @@ jobs:
# make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
Comment thread
rizaziz marked this conversation as resolved.
Outdated
with:
# fetch entire history to compute diffs between jobs
fetch-depth: 0
Expand All @@ -75,21 +75,21 @@ jobs:
args: --image forallsecure/lighttpd:vulnerable --duration 60

- name: Archive Coverage report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
Comment thread
rizaziz marked this conversation as resolved.
Outdated
with:
name: coverage-report
path: out/coverage/
if-no-files-found: error

- name: Archive JUnit results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
Comment thread
rizaziz marked this conversation as resolved.
Outdated
with:
name: mcode-junit
path: out/junit/
if-no-files-found: error

- name: Upload SARIF file(s)
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: out/sarif

Expand All @@ -102,7 +102,7 @@ jobs:
# make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
Comment thread
rizaziz marked this conversation as resolved.
Outdated
with:
# fetch entire history to compute diffs between jobs
fetch-depth: 0
Expand All @@ -125,7 +125,7 @@ jobs:
test-override-inputs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
Comment thread
rizaziz marked this conversation as resolved.
Outdated
with:
# fetch entire history to compute diffs between jobs
fetch-depth: 0
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
# make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
Comment thread
rizaziz marked this conversation as resolved.
Outdated
with:
# fetch entire history to compute diffs between jobs
fetch-depth: 0
Expand Down
Loading