Skip to content

Bump actions/setup-java from 5.4.0 to 5.5.0 (#1453) #2436

Bump actions/setup-java from 5.4.0 to 5.5.0 (#1453)

Bump actions/setup-java from 5.4.0 to 5.5.0 (#1453) #2436

Workflow file for this run

---
name: "Lint Codebase"
on: # yamllint disable-line rule:truthy
push:
branches: [main, release/**, patch/**]
pull_request:
branches: [main, release/**, patch/**]
permissions:
contents: read
statuses: write
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
fetch-depth: 0
persist-credentials: false
- name: Lint Code Base
uses: oxsecurity/megalinter@ef3e84b8b836d76db562d0f3ed7da61e8fd538bc # v9.6.0
env:
LOG_LEVEL: NOTICE
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
EXTENDS: .github/linters/.mega-linter.yml
# setting this to false means that only changed files will be scanned in each commit
VALIDATE_ALL_CODEBASE: ${{ github.event_name != 'pull_request' }}