Skip to content

Update grafana dependencies #9249

Update grafana dependencies

Update grafana dependencies #9249

Workflow file for this run

name: 'Check PR labels'
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled
- edited
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
permissions:
pull-requests: write
jobs:
check-labels:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: ./.github/actions/check-labels/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: ./.github/actions/check-labels
- name: Check labels
uses: ./.github/actions/check-labels