Skip to content

fix(security/high/): update security protobufjs to v7.6.3 [security] - abandoned #1504

fix(security/high/): update security protobufjs to v7.6.3 [security] - abandoned

fix(security/high/): update security protobufjs to v7.6.3 [security] - abandoned #1504

Workflow file for this run

name: Latest Grafana API compatibility check
on: [pull_request]
permissions:
contents: 'read'
actions: 'write'
jobs:
compatibilitycheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Install pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4
- name: Setup Node.js environment
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: '22'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile --ignore-scripts
- name: Build plugin
run: pnpm run build
- name: Find module.ts or module.tsx
id: find-module-ts
run: >-
MODULETS="$(find ./src -type f \( -name "module.ts" -o -name
"module.tsx" \))"
echo "modulets=${MODULETS}" >> $GITHUB_OUTPUT
- name: Compatibility check
uses: grafana/plugin-actions/is-compatible@016148f3c2f244edb17da23f0d9aa0661b6dbf6f # main
with:
module: ${{ steps.find-module-ts.outputs.modulets }}
comment-pr: no
fail-if-incompatible: yes