chore(deps): update dependency org.clojure/clojure to v1.11.3 #996
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
--- | |
# MegaLinter GitHub Action configuration file | |
# More info at https://megalinter.github.io | |
name: MegaLinter | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
push: | |
# env: | |
# # Apply linter fixes configuration | |
# APPLY_FIXES: all # APPLY_FIXES must be defined as environment variable | |
# APPLY_FIXES_EVENT: pull_request # events that trigger fixes on a commit or PR (pull_request, push, all) | |
# APPLY_FIXES_MODE: commit # are fixes are directly committed (commit) or posted in a PR (pull_request) | |
# Run Linters in parallel | |
# Cancel running job if new job is triggered | |
concurrency: | |
group: "${{ github.ref }}-${{ github.workflow }}" | |
cancel-in-progress: true | |
jobs: | |
megalinter: | |
name: MegaLinter | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "🚀 Job automatically triggered by ${{ github.event_name }}" | |
- run: echo "🐧 Job running on ${{ runner.os }} server" | |
- run: echo "🐙 Using ${{ github.ref }} branch from ${{ github.repository }} repository" | |
# Git Checkout | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
token: "${{ secrets.PAT || secrets.GITHUB_TOKEN }}" | |
fetch-depth: 0 | |
- run: echo "🐙 ${{ github.repository }} repository was cloned to the runner." | |
# MegaLinter Configuration | |
- name: MegaLinter Run | |
id: ml | |
## latest release of major version | |
uses: oxsecurity/megalinter/flavors/[email protected] | |
env: | |
MEGALINTER_CONFIG: .github/config/megalinter.yaml | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" # report individual linter status | |
# Validate all source when push on main, else just the git diff with live. | |
VALIDATE_ALL_CODEBASE: >- | |
${{ github.event_name == 'push' && github.ref == 'refs/heads/main'}} | |
# Upload MegaLinter artifacts | |
- name: Archive production artifacts | |
if: ${{ success() }} || ${{ failure() }} | |
uses: actions/[email protected] | |
with: | |
name: MegaLinter reports | |
path: | | |
megalinter-reports | |
mega-linter.log | |
# Summary and status | |
- run: echo "🎨 MegaLinter quality checks completed" | |
- run: echo "🍏 Job status is ${{ job.status }}." |