Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"actions/create-github-app-token": "0.2.0",
"actions/run-capslock": "0.2.0",
"actions/azure-trusted-signing": "1.0.0",
"actions/validate-renovate-config": "0.1.0",
"actions/validate-renovate-config": "0.1.1",
"actions/cleanup-branches": "0.2.1",
"actions/docker-build-push-image": "0.1.0",
"actions/docker-export-digest": "0.1.0",
Expand Down
21 changes: 21 additions & 0 deletions actions/validate-renovate-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [0.1.1](https://github.com/grafana/shared-workflows/compare/validate-renovate-config/v0.1.0...validate-renovate-config/v0.1.1) (2025-10-28)


### 🐛 Bug Fixes

* **renovate:** add explicit renovate version and bump node version ([#1433](https://github.com/grafana/shared-workflows/issues/1433)) ([c5c5b6b](https://github.com/grafana/shared-workflows/commit/c5c5b6baa43bf321ac7243e19e7664abaa319eae))


### 📝 Documentation

* **validate-renovate-config:** make release please update the readme on each release ([#1401](https://github.com/grafana/shared-workflows/issues/1401)) ([545f151](https://github.com/grafana/shared-workflows/commit/545f151cc9c2fc0d57b130bddda7ebedef6782d7))


### 🔧 Miscellaneous Chores

* **deps:** update actions/setup-node action to v5 ([#1387](https://github.com/grafana/shared-workflows/issues/1387)) ([09ab8cf](https://github.com/grafana/shared-workflows/commit/09ab8cfef74475a91f980c38632f292de416d43d))
* **deps:** update actions/setup-node action to v6 ([#1431](https://github.com/grafana/shared-workflows/issues/1431)) ([4850057](https://github.com/grafana/shared-workflows/commit/4850057ebf5b9af139c7bed3f714ef0d4f8f00d9))
* **deps:** update dependency renovate to 41.153 ([#1448](https://github.com/grafana/shared-workflows/issues/1448)) ([eddc7ba](https://github.com/grafana/shared-workflows/commit/eddc7baf60e2dbe2287bc626e2375ed4116eac1e))
* **deps:** update dependency renovate to 41.155 ([#1449](https://github.com/grafana/shared-workflows/issues/1449)) ([93f1ff8](https://github.com/grafana/shared-workflows/commit/93f1ff8d6267af9094e988eb79c1fbb184d04e24))
* **deps:** update dependency renovate to 41.159 ([#1453](https://github.com/grafana/shared-workflows/issues/1453)) ([5b72157](https://github.com/grafana/shared-workflows/commit/5b721570ff5de1cf9ec30a26e501c851b2d0e877))

## [0.1.0](https://github.com/grafana/shared-workflows/compare/validate-renovate-config/v0.1.0...validate-renovate-config/v0.1.0) (2025-10-10)


Expand Down
6 changes: 3 additions & 3 deletions actions/validate-renovate-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
persist-credentials: false
- name: Validate Renovate Config
uses: grafana/shared-workflows/actions/validate-renovate-config@validate-renovate-config/v0.1.0
uses: grafana/shared-workflows/actions/validate-renovate-config@validate-renovate-config/v0.1.1
```

## Validating multiple files
Expand All @@ -41,12 +41,12 @@ To validate multiple config files, call the action multiple times:

```yaml
- name: Validate main config
uses: grafana/shared-workflows/actions/validate-renovate-config@validate-renovate-config/v0.1.0
uses: grafana/shared-workflows/actions/validate-renovate-config@validate-renovate-config/v0.1.1
with:
path: renovate.json

- name: Validate preset
uses: grafana/shared-workflows/actions/validate-renovate-config@validate-renovate-config/v0.1.0
uses: grafana/shared-workflows/actions/validate-renovate-config@validate-renovate-config/v0.1.1
with:
path: presets/default.json
```
Expand Down