Update dependency ch.qos.logback:logback-classic to v1.5.12 - autoclosed #265
Workflow file for this run
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
name: Lint | |
# Lint workflow runs Kotlin linter (ktlint) on the code base. | |
# This workflow is run on every pull request and push to main. | |
# If no *.kt files are changed it will pass without running as these are required checks. | |
on: | |
pull_request: | |
paths: | |
- "**/*.kt" | |
- "*.gradle.kts" | |
- ".github/workflows/lint.yml" | |
push: | |
branches: | |
- main | |
# concurrency is not defined in here because this job usually doesn't | |
# run long enough to need cancelling, and it's okay for it to run multiple | |
# times for the same PR. | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Lint | |
uses: vroy/gha-kotlin-linter@v4 |