Skip to content
Merged
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
@@ -1,5 +1,5 @@
{
"build-plugin": "1.0.2",
"build-plugin": "1.1.0",
"bundle-size": "1.1.0",
"bundle-types": "1.0.2",
"create-plugin-update": "2.0.1",
Expand Down
14 changes: 14 additions & 0 deletions build-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.1.0](https://github.com/grafana/plugin-actions/compare/build-plugin/v1.0.2...build-plugin/v1.1.0) (2026-02-24)


### 🎉 Features

* update default Go version to 1.25 ([#202](https://github.com/grafana/plugin-actions/issues/202)) ([0deef9d](https://github.com/grafana/plugin-actions/commit/0deef9dc67d91214981d6ba1ba52b722305ab4c0))


### 🔧 Chores

* **deps:** update actions/attest-build-provenance action to v3 ([#158](https://github.com/grafana/plugin-actions/issues/158)) ([39a0e52](https://github.com/grafana/plugin-actions/commit/39a0e52b82cd3d7b1f9e51c993e06f06cdf5f78c))
* **deps:** update softprops/action-gh-release action to v2.3.4 ([#156](https://github.com/grafana/plugin-actions/issues/156)) ([c4393f0](https://github.com/grafana/plugin-actions/commit/c4393f091fd9f2ff7b7c6a09ca9d95c582cc174f))
* Update default go version to 1.25 and document versions input ([0deef9d](https://github.com/grafana/plugin-actions/commit/0deef9dc67d91214981d6ba1ba52b722305ab4c0))

## [1.0.2](https://github.com/grafana/plugin-actions/compare/build-plugin/v1.0.1...build-plugin/v1.0.2) (2025-08-04)


Expand Down
14 changes: 7 additions & 7 deletions build-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ name: Release
on:
push:
tags:
- "v*" # Run workflow on version tags, e.g. v1.0.2.
- "v*" # Run workflow on version tags, e.g. v1.1.0.

jobs:
release:
Expand All @@ -41,7 +41,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.0.2
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
with:
# see https://grafana.com/developers/plugin-tools/publish-a-plugin/sign-a-plugin#generate-an-access-policy-token to generate it
# save the value in your repository secrets
Expand Down Expand Up @@ -73,7 +73,7 @@ name: Release
on:
push:
tags:
- "v*" # Run workflow on version tags, e.g. v1.0.2.
- "v*" # Run workflow on version tags, e.g. v1.1.0.

jobs:
release:
Expand All @@ -86,7 +86,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.0.2
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
with:
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
attestation: true # new line
Expand All @@ -108,7 +108,7 @@ To enable changelog generation in your workflow:
<!-- x-release-please-start-version -->

```yaml
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.0.2
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
with:
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
use_changelog_generator: true
Expand All @@ -128,7 +128,7 @@ If your target branch is protected, the default github.token cannot push changes

```yaml
- name: Build plugin
uses: grafana/plugin-actions/build-plugin@build-plugin/v1.0.2
uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
with:
use_changelog_generator: true
token: ${{ secrets.CHANGELOG_PAT }} # Replace default github.token
Expand All @@ -141,7 +141,7 @@ If your plugin requires a different Go version than the default, you can specify
<!-- x-release-please-start-version -->

```yaml
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.0.2
- uses: grafana/plugin-actions/build-plugin@build-plugin/v1.1.0
with:
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
go-version: '1.23'
Expand Down