Skip to content

chore(deps): bump github/codeql-action from 3.28.16 to 4.30.9 #360

chore(deps): bump github/codeql-action from 3.28.16 to 4.30.9

chore(deps): bump github/codeql-action from 3.28.16 to 4.30.9 #360

Workflow file for this run

# 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