Skip to content

Commit 7020ec4

Browse files
chore(deps): pin dependencies
| datasource | package | from | to | | ---------- | -------------------------------- | ---------- | ---------- | | npm | @babel/core | 7.26.9 | 7.26.9 | | npm | @grafana/eslint-config | 8.0.0 | 8.0.0 | | npm | @grafana/plugin-e2e | 1.18.2 | 1.18.2 | | npm | @grafana/tsconfig | 2.0.0 | 2.0.0 | | npm | @stylistic/eslint-plugin-ts | 3.1.0 | 3.1.0 | | npm | @swc/core | 1.10.18 | 1.10.18 | | npm | @swc/helpers | 0.5.15 | 0.5.15 | | npm | @swc/jest | 0.2.37 | 0.2.37 | | npm | @testing-library/user-event | 14.6.1 | 14.6.1 | | npm | @types/jest | 29.5.14 | 29.5.14 | | npm | @types/lodash | 4.17.15 | 4.17.15 | | npm | @types/node | 20.17.19 | 20.17.19 | | npm | @typescript-eslint/eslint-plugin | 7.18.0 | 7.18.0 | | npm | @typescript-eslint/parser | 7.18.0 | 7.18.0 | | npm | copy-webpack-plugin | 12.0.2 | 12.0.2 | | npm | cspell | 8.18.1 | 8.18.1 | | npm | css-loader | 7.1.2 | 7.1.2 | | npm | eslint | 8.57.1 | 8.57.1 | | npm | eslint-config-prettier | 10.1.1 | 10.1.1 | | npm | eslint-plugin-deprecation | 2.0.0 | 2.0.0 | | npm | eslint-plugin-jsdoc | 61.1.8 | 61.1.8 | | npm | eslint-plugin-prettier | 5.5.4 | 5.5.4 | | npm | eslint-plugin-react | 7.37.5 | 7.37.5 | | npm | eslint-plugin-react-hooks | 5.2.0 | 5.2.0 | | npm | eslint-webpack-plugin | 4.2.0 | 4.2.0 | | npm | fork-ts-checker-webpack-plugin | 9.0.2 | 9.0.2 | | npm | glob | 11.0.1 | 11.0.1 | | npm | imports-loader | 5.0.0 | 5.0.0 | | npm | jest | 29.7.0 | 29.7.0 | | npm | jest-environment-jsdom | 29.7.0 | 29.7.0 | | npm | prettier | 3.5.1 | 3.5.1 | | npm | replace-in-file-webpack-plugin | 1.0.6 | 1.0.6 | | npm | semver | 7.7.3 | 7.7.3 | | npm | swc-loader | 0.2.6 | 0.2.6 | | npm | terser-webpack-plugin | 5.3.14 | 5.3.14 | | npm | ts-node | 10.9.2 | 10.9.2 | | npm | tsconfig-paths | 4.2.0 | 4.2.0 | | npm | webpack | 5.98.0 | 5.98.0 | | npm | webpack-cli | 6.0.1 | 6.0.1 | | npm | webpack-livereload-plugin | 3.0.2 | 3.0.2 | | npm | webpack-subresource-integrity | 5.2.0-rc.1 | 5.2.0-rc.1 | | npm | webpack-virtual-modules | 0.6.2 | 0.6.2 | Signed-off-by: renovate-sh-app[bot] <219655108+renovate-sh-app[bot]@users.noreply.github.com>
1 parent 3019f03 commit 7020ec4

File tree

6 files changed

+170
-1092
lines changed

6 files changed

+170
-1092
lines changed

.config/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG grafana_version=latest
1+
ARG grafana_version=latest@sha256:0fa9cbdd2826d3866238a22f12330aa70f263129324509756fe0ee1b570a8e21
22
ARG grafana_image=grafana-enterprise
33

44
FROM grafana/${grafana_image}:${grafana_version}

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
plugin-version: ${{ steps.metadata.outputs.plugin-version }}
2020
archive: ${{ steps.metadata.outputs.archive }}
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
2323
with:
2424
persist-credentials: false
2525

2626
- name: Setup Node.js environment
27-
uses: actions/setup-node@v4
27+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
2828
with:
2929
node-version-file: '.nvmrc'
3030
cache: 'yarn'
@@ -45,7 +45,7 @@ jobs:
4545
run: yarn run build
4646

4747
- name: Setup Go environment
48-
uses: actions/setup-go@v5
48+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
4949
with:
5050
go-version-file: go.mod
5151

@@ -84,7 +84,7 @@ jobs:
8484
zip ${PLUGIN_ARCHIVE} ${PLUGIN_ID} -r
8585
8686
- name: Archive Build
87-
uses: actions/upload-artifact@v4
87+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
8888
with:
8989
name: ${{ steps.metadata.outputs.plugin-id }}-${{ steps.metadata.outputs.plugin-version }}
9090
path: ${{ steps.metadata.outputs.archive }}
@@ -114,12 +114,12 @@ jobs:
114114
name: ${{ matrix.GRAFANA_IMAGE.name }}@${{ matrix.GRAFANA_IMAGE.VERSION }}
115115
runs-on: ubuntu-latest
116116
steps:
117-
- uses: actions/checkout@v4
117+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
118118
with:
119119
persist-credentials: false
120120

121121
- name: Setup Node.js environment
122-
uses: actions/setup-node@v4
122+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
123123
with:
124124
node-version-file: '.nvmrc'
125125
cache: 'yarn'
@@ -132,7 +132,7 @@ jobs:
132132

133133
- name: Download build
134134
id: download-build
135-
uses: actions/download-artifact@v4
135+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
136136
with:
137137
name: ${{ needs.build.outputs.plugin-id }}-${{ needs.build.outputs.plugin-version }}
138138

@@ -168,12 +168,12 @@ jobs:
168168
name: ${{ matrix.GRAFANA_IMAGE.name }}@${{ matrix.GRAFANA_IMAGE.VERSION }}-fork
169169
runs-on: ubuntu-latest
170170
steps:
171-
- uses: actions/checkout@v4
171+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
172172
with:
173173
persist-credentials: false
174174

175175
- name: Setup Node.js environment
176-
uses: actions/setup-node@v4
176+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
177177
with:
178178
node-version-file: '.nvmrc'
179179
cache: 'yarn'
@@ -186,7 +186,7 @@ jobs:
186186

187187
- name: Download build
188188
id: download-build
189-
uses: actions/download-artifact@v4
189+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
190190
with:
191191
name: ${{ needs.build.outputs.plugin-id }}-${{ needs.build.outputs.plugin-version }}
192192

.github/workflows/detect-breaking-changes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
compatibilitycheck:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
99
with:
1010
persist-credentials: false
11-
- uses: actions/setup-node@v4
11+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
1212
with:
1313
node-version-file: '.nvmrc'
1414
- name: Install dependencies

.github/workflows/issue_commands.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout Actions
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
1111
with:
1212
repository: 'grafana/grafana-github-actions'
1313
path: ./actions

package.json

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -38,57 +38,57 @@
3838
"tslib": "2.5.3"
3939
},
4040
"devDependencies": {
41-
"@babel/core": "^7.21.4",
42-
"@grafana/eslint-config": "^8.0.0",
43-
"@grafana/plugin-e2e": "^1.17.1",
44-
"@grafana/tsconfig": "^2.0.0",
41+
"@babel/core": "7.26.9",
42+
"@grafana/eslint-config": "8.0.0",
43+
"@grafana/plugin-e2e": "1.18.2",
44+
"@grafana/tsconfig": "2.0.0",
4545
"@playwright/test": "1.50.1",
46-
"@stylistic/eslint-plugin-ts": "^3.1.0",
47-
"@swc/core": "^1.3.90",
48-
"@swc/helpers": "^0.5.0",
49-
"@swc/jest": "^0.2.26",
46+
"@stylistic/eslint-plugin-ts": "3.1.0",
47+
"@swc/core": "1.10.18",
48+
"@swc/helpers": "0.5.15",
49+
"@swc/jest": "0.2.37",
5050
"@testing-library/jest-dom": "6.6.3",
5151
"@testing-library/react": "16.2.0",
52-
"@testing-library/user-event": "^14.6.1",
53-
"@types/jest": "^29.5.0",
54-
"@types/lodash": "^4.14.194",
55-
"@types/node": "^20.8.7",
52+
"@testing-library/user-event": "14.6.1",
53+
"@types/jest": "29.5.14",
54+
"@types/lodash": "4.17.15",
55+
"@types/node": "20.17.19",
5656
"@types/react": "17.0.22",
57-
"@typescript-eslint/eslint-plugin": "^7.18.0",
58-
"@typescript-eslint/parser": "^7.18.0",
59-
"copy-webpack-plugin": "^12.0.2",
60-
"cspell": "^8.18.1",
61-
"css-loader": "^7.1.2",
62-
"eslint": "^8.57.1",
63-
"eslint-config-prettier": "^10.1.1",
64-
"eslint-plugin-deprecation": "^2.0.0",
65-
"eslint-plugin-jsdoc": "^61.1.8",
66-
"eslint-plugin-prettier": "^5.5.4",
67-
"eslint-plugin-react": "^7.37.5",
68-
"eslint-plugin-react-hooks": "^5.2.0",
69-
"eslint-webpack-plugin": "^4.0.1",
70-
"fork-ts-checker-webpack-plugin": "^9.0.2",
71-
"glob": "^11.0.1",
57+
"@typescript-eslint/eslint-plugin": "7.18.0",
58+
"@typescript-eslint/parser": "7.18.0",
59+
"copy-webpack-plugin": "12.0.2",
60+
"cspell": "8.18.1",
61+
"css-loader": "7.1.2",
62+
"eslint": "8.57.1",
63+
"eslint-config-prettier": "10.1.1",
64+
"eslint-plugin-deprecation": "2.0.0",
65+
"eslint-plugin-jsdoc": "61.1.8",
66+
"eslint-plugin-prettier": "5.5.4",
67+
"eslint-plugin-react": "7.37.5",
68+
"eslint-plugin-react-hooks": "5.2.0",
69+
"eslint-webpack-plugin": "4.2.0",
70+
"fork-ts-checker-webpack-plugin": "9.0.2",
71+
"glob": "11.0.1",
7272
"identity-obj-proxy": "3.0.0",
73-
"imports-loader": "^5.0.0",
74-
"jest": "^29.7.0",
75-
"jest-environment-jsdom": "^29.7.0",
76-
"prettier": "^3.5.1",
77-
"replace-in-file-webpack-plugin": "^1.0.6",
73+
"imports-loader": "5.0.0",
74+
"jest": "29.7.0",
75+
"jest-environment-jsdom": "29.7.0",
76+
"prettier": "3.5.1",
77+
"replace-in-file-webpack-plugin": "1.0.6",
7878
"sass": "1.85.0",
7979
"sass-loader": "16.0.5",
80-
"semver": "^7.6.3",
80+
"semver": "7.7.3",
8181
"style-loader": "4.0.0",
82-
"swc-loader": "^0.2.3",
83-
"terser-webpack-plugin": "^5.3.14",
84-
"ts-node": "^10.9.2",
85-
"tsconfig-paths": "^4.2.0",
82+
"swc-loader": "0.2.6",
83+
"terser-webpack-plugin": "5.3.14",
84+
"ts-node": "10.9.2",
85+
"tsconfig-paths": "4.2.0",
8686
"typescript": "5.7.3",
87-
"webpack": "^5.94.0",
88-
"webpack-cli": "^6.0.1",
89-
"webpack-livereload-plugin": "^3.0.2",
90-
"webpack-subresource-integrity": "^5.2.0-rc.1",
91-
"webpack-virtual-modules": "^0.6.2",
87+
"webpack": "5.98.0",
88+
"webpack-cli": "6.0.1",
89+
"webpack-livereload-plugin": "3.0.2",
90+
"webpack-subresource-integrity": "5.2.0-rc.1",
91+
"webpack-virtual-modules": "0.6.2",
9292
"@types/testing-library__jest-dom": "5.14.9"
9393
},
9494
"resolutions": {

0 commit comments

Comments
 (0)