Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

feat(container): update ghcr.io/advplyr/audiobookshelf ( 2.15.1 β†’ 2.16.2 ) #5372

feat(container): update ghcr.io/advplyr/audiobookshelf ( 2.15.1 β†’ 2.16.2 )

feat(container): update ghcr.io/advplyr/audiobookshelf ( 2.15.1 β†’ 2.16.2 ) #5372

Workflow file for this run

# yamllint disable rule:comments
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: "Linter"
'on':
workflow_dispatch:
pull_request:
branches:
- master
jobs:
linter:
name: Linter
runs-on: ubuntu-latest
steps:
- name: Generate Token
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1
id: app-token
with:
app-id: "${{ secrets.BOT_APP_ID }}"
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
token: "${{ steps.app-token.outputs.token }}"
- name: Install nix
uses: cachix/install-nix-action@08dcb3a5e62fa31e2da3d490afc4176ef55ecd72 # v30
with:
nix_path: nixpkgs=channel:nixos-unstable
extra_nix_config: |
access-tokens = github.com=${{ steps.app-token.outputs.token }}
- name: Enable develop shell
uses: nicknovitski/nix-develop@c2bcf9062b7c3a24659d915b8f272c1931a5802f # v1.2.0
- name: Run linters
run: pre-commit run --all-files
# yamllint enable rule:comments