Skip to content

Commit 33f9e12

Browse files
committed
Bump grafana/plugin-actions/is-compatible github action + consistent use
of action/checkout and actons/setup-node
1 parent c002113 commit 33f9e12

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/is-compatible.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ jobs:
55
compatibilitycheck:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v6
99
with:
1010
persist-credentials: false
1111
- name: Setup Node.js environment
12-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
12+
uses: actions/setup-node@v6
1313
with:
1414
node-version: '22'
1515
cache: 'npm'
@@ -18,8 +18,9 @@ jobs:
1818
- name: Build plugin
1919
run: npm run build
2020
- name: Compatibility check
21-
uses: grafana/plugin-actions/is-compatible@bf335ac99375f0ba8828497abdf1a22897b5d888
21+
uses: grafana/plugin-actions/is-compatible@8e19900577d14a8ac66c5e8299ce51522590c219
2222
with:
23+
module: 'src/module.ts'
2324
comment-pr: 'yes'
2425
fail-if-incompatible: 'no'
25-
targets: '@grafana/data,@grafana/ui,@grafana/runtime,@grafana/e2e-selectors'
26+
targets: '@grafana/data,@grafana/ui,@grafana/runtime,@grafana/e2e-selectors'

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
env:
1212
GRAFANA_API_KEY: ${{ secrets.GRAFANA_API_KEY }} # Requires a Grafana API key from Grafana.com.
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v6
1515
- name: Setup Node.js environment
16-
uses: actions/setup-node@v3
16+
uses: actions/setup-node@v6
1717
with:
1818
node-version: '22'
1919
cache: 'npm'

0 commit comments

Comments
 (0)