Bump xero from 449e6e7
to c930f7d
#1491
Workflow file for this run
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
--- | |
######################### | |
######################### | |
## GitHub Super-Linter ## | |
######################### | |
######################### | |
name: Super-Linter | |
# https://bit.ly/git-io_workflow-syntax-for-github-actions | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
##################################### | |
# Cancel any in-progress job or run # | |
##################################### | |
concurrency: | |
# cancel any in-progress job or run | |
# https://github.com/kdeldycke/workflows/commit/8bee3ba877 | |
# https://docs.github.com/actions/using-jobs/using-concurrency | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
build: | |
# Name the Job | |
name: Lint Code Base | |
# Set the agent to run on | |
runs-on: ubuntu-22.04 | |
################## | |
# Load all steps # | |
################## | |
steps: | |
########################## | |
# Checkout the code base # | |
########################## | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
with: | |
# Super-Linter requires full repository history for analysis | |
fetch-depth: 0 | |
################################ | |
# Run Linter against code base # | |
################################ | |
- name: Lint Code Base | |
uses: super-linter/super-linter@v5 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
# Super-Linter requires this variable even if it is unset | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
... |