Skip to content
Open
Show file tree
Hide file tree
Changes from all 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/codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5 # v5

Check warning on line 52 in .github/workflows/codacy.yml

View workflow job for this annotation

GitHub Actions / validate

52:35 [comments] too few spaces before comment: expected 2

- name: Run Codacy Analysis CLI
if: env.CODACY_PROJECT_TOKEN != ''
uses: codacy/codacy-analysis-cli-action@562ee3e92b8e92df8b67e0a5ff8aa8e261919c08 # v4.4.7

Check warning on line 56 in .github/workflows/codacy.yml

View workflow job for this annotation

GitHub Actions / validate

56:90 [comments] too few spaces before comment: expected 2
with:
project-token: ${{ env.CODACY_PROJECT_TOKEN }}
verbose: true
Expand All @@ -64,7 +64,7 @@

- name: Upload SARIF results file
if: env.CODACY_PROJECT_TOKEN != '' && hashFiles('results.sarif') != ''
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: results.sarif

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
for path, err in bad: print(f" - {path}: {err}")
sys.exit(1)
PY
- uses: github/codeql-action/init@v3
- uses: github/codeql-action/init@v4
with:
languages: python
tools: latest
- uses: github/codeql-action/analyze@v3
- uses: github/codeql-action/analyze@v4
2 changes: 1 addition & 1 deletion .github/workflows/ethicalcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:

- name: Upload SARIF file to repository
if: hashFiles('ethicalcheck-results.sarif') != ''
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
continue-on-error: true
with:
sarif_file: ./ethicalcheck-results.sarif
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ossf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ jobs:
results_format: sarif
publish_results: true
- name: Upload to code scanning
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: results.sarif
Loading