Skip to content

Commit 1b84545

Browse files
authored
ci: Update Superlinter to v8 (#905)
1 parent 48ed806 commit 1b84545

File tree

1 file changed

+1
-35
lines changed

1 file changed

+1
-35
lines changed

.github/workflows/linter.yaml

Lines changed: 1 addition & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,22 @@
1-
#################################
2-
#################################
3-
## Super Linter GitHub Actions ##
4-
#################################
5-
#################################
61
name: Lint Code Base
72

8-
#
9-
# Documentation:
10-
# https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions
11-
#
12-
13-
#############################
14-
# Start the job on all push #
15-
#############################
163
on:
174
pull_request:
185
branches: [main]
196

20-
###############
21-
# Set the Job #
22-
###############
237
jobs:
248
build:
25-
# Name the Job
269
name: Lint Code Base
27-
# Set the agent to run on
2810
runs-on: ubuntu-latest
29-
# if on repo to avoid failing runs on forks
30-
if: |
31-
github.repository == 'a2aproject/A2A'
3211

33-
##################
34-
# Load all steps #
35-
##################
3612
steps:
37-
##########################
38-
# Checkout the code base #
39-
##########################
4013
- name: Checkout Code
4114
uses: actions/checkout@v4
4215
with:
43-
# Full git history is needed to get a proper list of changed files within `super-linter`
4416
fetch-depth: 0
4517

46-
################################
47-
# Run Linter against code base #
48-
################################
4918
- name: Lint Code Base
50-
uses: super-linter/super-linter/slim@v7
19+
uses: super-linter/super-linter/slim@v8
5120
env:
5221
DEFAULT_BRANCH: main
5322
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -60,10 +29,7 @@ jobs:
6029
VALIDATE_PYTHON_ISORT: false
6130
VALIDATE_PYTHON_MYPY: false
6231
VALIDATE_PYTHON_PYLINT: false
63-
VALIDATE_PYTHON_PYINK: false
6432
VALIDATE_CHECKOV: false
65-
VALIDATE_JAVASCRIPT_STANDARD: false
66-
VALIDATE_TYPESCRIPT_STANDARD: false
6733
VALIDATE_NATURAL_LANGUAGE: false
6834
MARKDOWN_CONFIG_FILE: ".markdownlint.json"
6935
VALIDATE_MARKDOWN_PRETTIER: false

0 commit comments

Comments
 (0)