Skip to content

Commit

Permalink
update actions/update-artifact and actions/checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
ardera committed Sep 15, 2024
1 parent ccc2b3b commit 5a6e1c1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:

- name: Upload CodeQL results as an artifact
if: success() || failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: codeql-results
path: ${{ steps.step1.outputs.sarif-output }}
Expand All @@ -94,7 +94,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -110,7 +110,7 @@ jobs:
run: |
./.github/workflows/codeql-buildscript.sh
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: "Scan-Build Bug Reports"
path: ${{ github.workspace }}/build/scan-build-html
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

Expand All @@ -155,7 +155,7 @@ jobs:
ctu: true
logfile: ${{ github.workspace }}/build/compile_commands.json

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: "CodeChecker Bug Reports"
path: ${{ steps.codechecker.outputs.result-html-dir }}
Expand Down

0 comments on commit 5a6e1c1

Please sign in to comment.