@grafana/create-plugin 4.1.0 → 4.2.0-canary.757.235cf2d.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "4.1.0",
3
+ "version": "4.2.0-canary.757.235cf2d.0",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -87,5 +87,5 @@
87
87
  "engines": {
88
88
  "node": ">=20"
89
89
  },
90
- "gitHead": "7eaad28608a368c669ec21e92140d738858ed6c5"
90
+ "gitHead": "235cf2de505b12058c164366089d67c0d24a7644"
91
91
  }
@@ -11,6 +11,8 @@ on:
11
11
  - master
12
12
  - main
13
13
 
14
+ permissions: read-all
15
+
14
16
  jobs:
15
17
  build:
16
18
  runs-on: ubuntu-latest
@@ -8,11 +8,12 @@ on:
8
8
  tags:
9
9
  - 'v*' # Run workflow on version tags, e.g. v1.0.0.
10
10
 
11
- permissions:
12
- contents: write
11
+ permissions: read-all
13
12
 
14
13
  jobs:
15
14
  release:
15
+ permissions:
16
+ contents: write
16
17
  runs-on: ubuntu-latest
17
18
  steps:
18
19
  - uses: actions/checkout@v4