chore(deps): update container image ghcr.io/advplyr/audiobookshelf to v2.15.0 #2942
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 | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
env: | |
# Currently no way to detect automatically | |
DEFAULT_BRANCH: main | |
jobs: | |
build: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Lint | |
uses: github/super-linter/slim@v5 | |
env: | |
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'workflow_dispatch' }} | |
DEFAULT_BRANCH: "${{ env.DEFAULT_BRANCH }}" | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
ANSIBLE_CONFIG_FILE: .ansible-lint | |
MARKDOWN_CONFIG_FILE: .markdownlint.yaml | |
TERRAFORM_TFLINT_CONFIG_FILE: .tflint.hcl | |
YAML_CONFIG_FILE: .yamllint.yaml | |
KUBERNETES_KUBECONFORM_OPTIONS: -ignore-missing-schemas -schema-location default -schema-location 'https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main' |