Skip to content

Bump super-linter/super-linter from 6.0.0 to 6.1.1 #431

Bump super-linter/super-linter from 6.0.0 to 6.1.1

Bump super-linter/super-linter from 6.0.0 to 6.1.1 #431

Workflow file for this run

---
name: CI
on: [push, pull_request]
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Super-Linter
uses: super-linter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: .
VALIDATE_ALL_CODEBASE: true
setup_unix_like:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup dotfiles (${{ matrix.os }})
run: |
./setup.sh
strategy:
matrix:
os:
- macos-12
- ubuntu-20.04
- ubuntu-22.04
setup_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotfiles (Windows)
run: |
powershell -executionpolicy bypass ".\setup-windows.ps1"
...