Merge pull request #38 from codebytes/dependabot/github_actions/github/super-linter-7

Bump github/super-linter from 5 to 7
هذا الالتزام موجود في:
Chris Ayers
2024-09-05 13:33:24 -04:00
ملتزم من قبل GitHub
الأصل f363579010 e72cc34842
التزام 7805ad0c4a

عرض الملف

@@ -3,27 +3,36 @@
# #
# You can adjust the behavior by modifying this file. # You can adjust the behavior by modifying this file.
# For more information, see: # For more information, see:
# https://github.com/github/super-linter # https://github.com/super-linter/super-linter
name: Lint Code Base name: Lint Code Base
on: on: # yamllint disable-line rule:truthy
push: push: null
branches: [main] pull_request: null
pull_request:
branches: [main] permissions: {}
jobs: jobs:
run-lint: build:
name: Lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v4.1.1 uses: actions/checkout@v4
with: with:
# Full git history is needed to get a proper list of changed files within `super-linter` # super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0 fetch-depth: 0
- name: Lint Code Base - name: Super-linter
uses: github/super-linter@v5 uses: super-linter/super-linter@v7.1.0 # x-release-please-version
env: env:
VALIDATE_ALL_CODEBASE: false # To report GitHub Actions status checks
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}