Bump Golang and node dependencies to fix high vulnerabilities #262
This file contains hidden or 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: Latest Grafana API compatibility check | |
| on: [pull_request] | |
| jobs: | |
| compatibilitycheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Setup Node.js environment | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build plugin | |
| run: npm run build | |
| - name: Compatibility check | |
| uses: grafana/plugin-actions/is-compatible@bf335ac99375f0ba8828497abdf1a22897b5d888 | |
| with: | |
| comment-pr: 'yes' | |
| fail-if-incompatible: 'no' | |
| targets: '@grafana/data,@grafana/ui,@grafana/runtime,@grafana/e2e-selectors' |