chore(deps): bump actions/dependency-review-action from 67d4f4bd7a9b17a0db54d2a7519187c65e339de8 to 07b91577a360213440b7d4bc514338cb37ce61a0 #359
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2025 Ant Group Co., Ltd. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
name: Checks | |
on: | |
push: | |
branches: | |
- main | |
- release/* | |
paths-ignore: | |
- 'docs/**' | |
- '**.go' | |
pull_request: | |
branches: | |
- main | |
- release/* | |
paths-ignore: | |
- 'docs/**' | |
- '**.go' | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
common-checks: | |
name: common checks | |
runs-on: ubuntu-latest | |
container: | |
image: secretflow/kuscia-ci:20250314 | |
steps: | |
- name: Harden the runner (Audit all outbound calls) | |
uses: step-security/harden-runner@0634a2670c59f64b4a01f0f96f84700a4088b9f0 # v2.12.0 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: '0' | |
- name: Check shell, yaml, codespell | |
run: | | |
make shell-check | |
make yaml-check | |
make codespell-check |