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 @@ -11,7 +11,7 @@
"actions/argo-lint": "1.0.2",
"actions/setup-conftest": "1.0.2",
"actions/setup-argo": "1.0.2",
"actions/generate-openapi-clients": "1.0.2",
"actions/generate-openapi-clients": "1.0.3",
"actions/push-to-gcs": "0.3.0",
"actions/techdocs-rewrite-relative-links": "1.0.2",
"actions/validate-policy-bot-config": "1.1.1",
Expand Down
15 changes: 15 additions & 0 deletions actions/generate-openapi-clients/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [1.0.3](https://github.com/grafana/shared-workflows/compare/generate-openapi-clients/v1.0.2...generate-openapi-clients/v1.0.3) (2025-10-24)


### 🤖 Continuous Integration

* enhance, fix, run pre-commit ([#1033](https://github.com/grafana/shared-workflows/issues/1033)) ([9ffb9ce](https://github.com/grafana/shared-workflows/commit/9ffb9cec67a7712b4247e4ac37eb69946d802aed))


### 🔧 Miscellaneous Chores

* **deps:** update actions/cache action to v4.2.4 ([#1201](https://github.com/grafana/shared-workflows/issues/1201)) ([25cf7e3](https://github.com/grafana/shared-workflows/commit/25cf7e34e371246a9a9843bade599df92fca88ae))
* **deps:** update actions/cache action to v4.3.0 ([#1346](https://github.com/grafana/shared-workflows/issues/1346)) ([bcfe5a0](https://github.com/grafana/shared-workflows/commit/bcfe5a09ced411b395d8601ea24d64266ba8188c))
* **deps:** update stefanzweifel/git-auto-commit-action action to v6 ([#1085](https://github.com/grafana/shared-workflows/issues/1085)) ([7a91eed](https://github.com/grafana/shared-workflows/commit/7a91eed93c921ed1a55795ad6f30fb01fe2de1aa))
* **deps:** update stefanzweifel/git-auto-commit-action action to v7 ([#1424](https://github.com/grafana/shared-workflows/issues/1424)) ([8f99ae5](https://github.com/grafana/shared-workflows/commit/8f99ae563f64c9aafd3d1eeefd13ae035f10519a))

## [1.0.2](https://github.com/grafana/shared-workflows/compare/generate-openapi-clients-v1.0.1...generate-openapi-clients/v1.0.2) (2025-06-04)


Expand Down
6 changes: 3 additions & 3 deletions actions/generate-openapi-clients/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ jobs:
permissions:
contents: write # Only needed if `commit-changes` is set to true
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v1.0.2
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v1.0.3
with:
persist-credentials: false

- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v1.0.2
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v1.0.3
with:
go-version: 1.18
- name: Generate clients
uses: grafana/shared-workflows/actions/generate-openapi-clients@generate-openapi-clients/v1.0.2
uses: grafana/shared-workflows/actions/generate-openapi-clients@generate-openapi-clients/v1.0.3
with:
package-name: slo
spec-path: openapi.yaml
Expand Down