Skip to content

Commit 68850df

Browse files
committed
fix: disable biome and ruff
- fix scorecard workflow tag comments (remove them) - add .tool-versions (asdf) to .gitignore Signed-off-by: jmeridth <[email protected]>
1 parent a495524 commit 68850df

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/scorecard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
28+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
2929
with:
3030
persist-credentials: false
3131

3232
- name: "Run analysis"
33-
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
33+
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a
3434
with:
3535
results_file: results.sarif
3636
results_format: sarif
@@ -42,6 +42,6 @@ jobs:
4242
path: results.sarif
4343
retention-days: 5
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@64d10c13136e1c5bce3e5fbde8d4906eeaafc885 # v3.29.5
45+
uses: github/codeql-action/upload-sarif@64d10c13136e1c5bce3e5fbde8d4906eeaafc885
4646
with:
4747
sarif_file: results.sarif

.github/workflows/super-linter.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,6 @@ jobs:
3737
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3838
GITHUB_ACTIONS_COMMAND_ARGS: -shellcheck=
3939
FIX_MARKDOWN_PRETTIER: true
40+
VALIDATE_BIOME_FORMAT: false
41+
VALIDATE_BIOME_LINT: false
42+
VALIDATE_PYTHON_RUFF_FORMAT: false

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ __pycache__/
33
*.py[cod]
44
*$py.class
55

6+
# asdf
7+
.tool-versions
8+
69
# C extensions
710
*.so
811

0 commit comments

Comments
 (0)