This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
🤖️ GH Actions (deps): Bump sigstore/cosign-installer from 204a51a57a74d190b284a0ce69b44bc37201f343 to 4959ce089c160fddf62f7b42464195ba1a56d382 #241
This file contains 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
--- | |
########################### | |
########################### | |
## Linter GitHub Actions ## | |
########################### | |
########################### | |
name: Lint Code Base | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
branches: [dev, main, release] | |
pull_request: | |
branches: [dev, main, release] | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
build: | |
# Name the Job | |
name: Lint Code Base | |
# Set the agent to run on | |
runs-on: ubuntu-latest | |
################## | |
# Load all steps # | |
################## | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
################################ | |
# Run Linter against code base # | |
################################ | |
# - name: Lint Code Base | |
# uses: github/super-linter@v4 | |
# env: | |
# VALIDATE_ALL_CODEBASE: false | |
# DEFAULT_BRANCH: prod | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
################################ | |
# Run Linter against code base # | |
################################ | |
- name: Lint Code Base | |
uses: docker://ghcr.io/github/super-linter:slim-v4 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
LOG_LEVEL: WARN | |
FILTER_REGEX_EXCLUDE: '.*(\.github|\.vscode).*' | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |