mirror of
https://github.com/microsoft/DirectXTex.git
synced 2025-12-06 07:11:44 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](08c6903cd8...1af3b93b68)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT License.
|
|
#
|
|
# http://go.microsoft.com/fwlink/?LinkId=248926
|
|
|
|
name: Lint
|
|
|
|
on:
|
|
pull_request:
|
|
branches: "main"
|
|
paths-ignore:
|
|
- LICENSE
|
|
- build/*.in
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
analyze:
|
|
permissions:
|
|
contents: read
|
|
packages: read
|
|
statuses: write
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Lint Code Base
|
|
uses: super-linter/super-linter@2bdd90ed3262e023ac84bf8fe35dc480721fc1f2 # v8.2.1
|
|
env:
|
|
DEFAULT_BRANCH: origin/main
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
IGNORE_GITIGNORED_FILES: true
|
|
VALIDATE_ALL_CODEBASE: true
|
|
VALIDATE_CHECKOV: true
|
|
VALIDATE_EDITORCONFIG: true
|
|
VALIDATE_GITHUB_ACTIONS: true
|
|
VALIDATE_JSON: true
|
|
VALIDATE_MARKDOWN: true
|
|
VALIDATE_POWERSHELL: true
|
|
VALIDATE_GITLEAKS: true
|
|
VALIDATE_YAML: true
|