Skip to content

fix(deps): bump super-linter/super-linter from 8.1.0 to 8.3.0 #542

fix(deps): bump super-linter/super-linter from 8.1.0 to 8.3.0

fix(deps): bump super-linter/super-linter from 8.1.0 to 8.3.0 #542

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-24.04
strategy:
matrix:
java-version: [8, 11, 17]
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Setup Java
uses: actions/setup-java@v5
with:
distribution: zulu
java-version: "${{ matrix.java-version }}"
- name: Clean build directory
run: ./gradlew clean
- name: Build and test
run: ./gradlew build --info --console plain --refresh-dependencies
lint:
name: Lint
runs-on: ubuntu-24.04
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0 # needed for super-linter
- name: Lint codebase
uses: super-linter/super-linter/slim@502f4fe48a81a392756e173e39a861f8c8efe056 # v8.3.0
env:
IGNORE_GITIGNORED_FILES: true
FILTER_REGEX_INCLUDE: .*src/.*, .*test/.*
FILTER_REGEX_EXCLUDE: .*package-info.java
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}