fix(deps): update dependency fs-extra to v11.2.0 #189
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
--- | |
# Mega-Linter GitHub Action configuration file | |
# More info at https://github.com/oxsecurity/megalinter#readme | |
name: Mega-Linter | |
on: | |
# Trigger mega-linter at every push. Action will also be visible from Pull Requests to master | |
push: # Comment this line to trigger action only on pull-requests (not recommended if you don't pay for GH Actions) | |
pull_request: | |
branches: [main] | |
permissions: read-all | |
jobs: | |
build: | |
name: Mega-Linter | |
runs-on: ubuntu-latest | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push, comment issues & post new PR | |
# Remove the ones you do not need | |
contents: write | |
issues: write | |
pull-requests: write | |
steps: | |
# Git Checkout | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Mega-Linter | |
- name: Mega-Linter | |
uses: oxsecurity/megalinter/flavors/cupcake@v7 | |
env: | |
# All available variables are described in documentation | |
# https://github.com/oxsecurity/megalinter#configuration | |
VALIDATE_ALL_CODEBASE: true | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DISABLE_LINTERS: JAVASCRIPT_STANDARD,SPELL_PROSELINT,REPOSITORY_KICS | |
JAVA_FILTER_REGEX_EXCLUDE: (JavaCallerTester) | |
# Upload Mega-Linter artifacts. They will be available on Github action page "Artifacts" section | |
- name: Archive production artifacts | |
if: success() || failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Mega-Linter reports | |
path: | | |
megalinter-reports | |
mega-linter.log |