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

feat(helm): update kube-prometheus-stack ( 65.0.0 β†’ 65.1.0 ) #4438

feat(helm): update kube-prometheus-stack ( 65.0.0 β†’ 65.1.0 )

feat(helm): update kube-prometheus-stack ( 65.0.0 β†’ 65.1.0 ) #4438

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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
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@a2060d116a50b36dfab02280af558e73ab52427d # v1.1.0
- name: Run linters
run: pre-commit run --all-files
# yamllint enable rule:comments