Skip to content

chore(deps): bump custom/plugins/zsh-abbr from d145f63 to 1231c82 #3823

chore(deps): bump custom/plugins/zsh-abbr from d145f63 to 1231c82

chore(deps): bump custom/plugins/zsh-abbr from d145f63 to 1231c82 #3823

Workflow file for this run

---
#########################
#########################
## GitHub Super-Linter ##
#########################
#########################
name: Super-Linter
#############################
# Start the job on all push #
#############################
on:
push:
#####################################
# Cancel any in-progress job or run #
#####################################
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
############################
# Ensure safer permissions #
############################
permissions: read-all
###############
# Set the Job #
###############
jobs:
build:
# Name the Job
name: Lint Code Base
# Set the agent to run on
runs-on: ubuntu-latest
timeout-minutes: 10
##################
# Load all steps #
##################
steps:
##########################
# Checkout the code base #
##########################
- name: Checkout Code
uses: actions/checkout@v6
with:
# Super-Linter requires full repository history for analysis
fetch-depth: 0
persist-credentials: false
################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: super-linter/super-linter@v8 # zizmor: ignore[unpinned-uses]
env:
DEFAULT_BRANCH: main
# Super-Linter requires this variable even if it is unset
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
FIX_ANSIBLE: true
FIX_BIOME_FORMAT: true
FIX_BIOME_LINT: true
FIX_CLANG_FORMAT: true
FIX_CSHARP: true
FIX_CSS: true
FIX_CSS_PRETTIER: true
FIX_DOTNET_SLN_FORMAT_ANALYZERS: true
FIX_DOTNET_SLN_FORMAT_STYLE: true
FIX_DOTNET_SLN_FORMAT_WHITESPACE: true
FIX_ENV: true
FIX_GITHUB_ACTIONS_ZIZMOR: true
FIX_GO: true
FIX_GOOGLE_JAVA_FORMAT: true
FIX_GO_MODULES: true
FIX_GRAPHQL_PRETTIER: true
FIX_GROOVY: true
FIX_HTML_PRETTIER: true
FIX_JAVASCRIPT_ES: true
FIX_JAVASCRIPT_PRETTIER: true
FIX_JSON: true
FIX_JSONC: true
FIX_JSONC_PRETTIER: true
FIX_JSON_PRETTIER: true
FIX_JSX: true
FIX_JSX_PRETTIER: true
FIX_JUPYTER_NBQA_BLACK: true
FIX_JUPYTER_NBQA_ISORT: true
FIX_JUPYTER_NBQA_RUFF: true
FIX_KOTLIN: true
FIX_MARKDOWN: true
FIX_MARKDOWN_PRETTIER: true
FIX_NATURAL_LANGUAGE: true
FIX_POWERSHELL: true
FIX_PROTOBUF: true
FIX_PYTHON_BLACK: true
FIX_PYTHON_ISORT: true
FIX_PYTHON_RUFF: true
FIX_RUBY: true
FIX_RUST_2015: true
FIX_RUST_2018: true
FIX_RUST_2021: true
FIX_RUST_CLIPPY: true
FIX_SCALAFMT: true
FIX_SHELL_SHFMT: true
FIX_SNAKEMAKE_SNAKEFMT: true
FIX_SQLFLUFF: true
FIX_TERRAFORM_FMT: true
FIX_TSX: true
FIX_TYPESCRIPT_ES: true
FIX_TYPESCRIPT_PRETTIER: true
FIX_VUE: true
FIX_VUE_PRETTIER: true
FIX_YAML_PRETTIER: true