diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 2884514a..793e2f44 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -591,7 +591,7 @@ jobs: ci: name: CI - uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@main + uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@plugins-release-please/v1.0.2 needs: - setup with: @@ -748,7 +748,7 @@ jobs: - name: Check and create stub id: check-and-create-stub - uses: grafana/plugin-ci-workflows/actions/internal/plugins/publish/check-and-create-stub@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/publish/check-and-create-stub@plugins-release-please/v1.0.2 if: ${{ matrix.environment != 'prod' && matrix.environment != 'prod-canary' }} with: plugin-id: ${{ fromJSON(needs.ci.outputs.plugin).id }} @@ -758,13 +758,13 @@ jobs: - name: Check artifact ZIP(s) id: check-artifact-zips - uses: grafana/plugin-ci-workflows/actions/internal/plugins/publish/check-artifacts@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/publish/check-artifacts@plugins-release-please/v1.0.2 with: zips: ${{ needs.upload-to-gcs-release.outputs.gcs-zip-urls }} plugin-id: ${{ fromJSON(needs.ci.outputs.plugin).id }} - name: Publish to catalog - uses: grafana/plugin-ci-workflows/actions/plugins/publish/publish@main + uses: grafana/plugin-ci-workflows/actions/plugins/publish/publish@plugins-release-please/v1.0.2 with: zips: ${{ needs.upload-to-gcs-release.outputs.gcs-zip-urls }} environment: ${{ matrix.environment == 'prod-canary' && 'prod' || matrix.environment }} @@ -1078,7 +1078,7 @@ jobs: owner: ${{ github.repository_owner }} - name: Publish docs - uses: grafana/plugin-ci-workflows/actions/internal/plugins/docs/publish@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/docs/publish@plugins-release-please/v1.0.2 with: id: ${{ fromJSON(needs.ci.outputs.plugin).id }} version: ${{ fromJSON(needs.ci.outputs.plugin).version }} @@ -1116,7 +1116,7 @@ jobs: - name: Parse changelog id: changelog - uses: grafana/plugin-ci-workflows/actions/internal/plugins/changelog@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/changelog@plugins-release-please/v1.0.2 with: changelog-path: ${{ inputs.plugin-directory }}/CHANGELOG.md diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e1af139..fc94d095 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -308,7 +308,7 @@ env: jobs: check-for-release-channel: name: Check for release channel - uses: grafana/plugin-ci-workflows/.github/workflows/check-release-channel.yml@main + uses: grafana/plugin-ci-workflows/.github/workflows/check-release-channel.yml@plugins-release-please/v1.0.2 with: DO-NOT-USE-allow-pinned-commit-hashes: ${{ inputs.DO-NOT-USE-allow-pinned-commit-hashes }} @@ -415,7 +415,7 @@ jobs: - name: Setup id: setup - uses: grafana/plugin-ci-workflows/actions/internal/plugins/setup@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/setup@plugins-release-please/v1.0.2 with: plugin-directory: ${{ inputs.plugin-directory }} node-version: ${{ fromJson(steps.tooling-versions.outputs.result).nodeVersion }} @@ -489,7 +489,7 @@ jobs: - name: Test and build frontend id: frontend - uses: grafana/plugin-ci-workflows/actions/internal/plugins/frontend@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/frontend@plugins-release-please/v1.0.2 with: plugin-directory: ${{ inputs.plugin-directory }} secrets: ${{ (fromJson(steps.workflow-context.outputs.result).isTrusted && inputs.frontend-secrets != '') && inputs.frontend-secrets || '' }} @@ -498,7 +498,7 @@ jobs: - name: Test and build backend id: backend if: ${{ steps.check-for-backend.outputs.has-backend == 'true' }} - uses: grafana/plugin-ci-workflows/actions/internal/plugins/backend@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/backend@plugins-release-please/v1.0.2 with: github-token: ${{ steps.generate-github-token.outputs.token }} plugin-directory: ${{ inputs.plugin-directory }} @@ -506,7 +506,7 @@ jobs: - name: Package universal ZIP id: universal-zip - uses: grafana/plugin-ci-workflows/actions/internal/plugins/package@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/package@plugins-release-please/v1.0.2 with: universal: "true" dist-folder: ${{ inputs.plugin-directory }}/dist @@ -517,7 +517,7 @@ jobs: - name: Package os/arch ZIPs id: os-arch-zips - uses: grafana/plugin-ci-workflows/actions/internal/plugins/package@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/package@plugins-release-please/v1.0.2 with: universal: "false" dist-folder: ${{ inputs.plugin-directory }}/dist @@ -528,7 +528,7 @@ jobs: - name: Trufflehog secrets scanning if: ${{ inputs.run-trufflehog == true }} - uses: grafana/plugin-ci-workflows/actions/internal/plugins/trufflehog@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/trufflehog@plugins-release-please/v1.0.2 with: trufflehog-version: ${{ inputs.trufflehog-version || env.DEFAULT_TRUFFLEHOG_VERSION }} folder: ${{ inputs.plugin-directory }}/dist-artifacts @@ -676,11 +676,11 @@ jobs: shell: bash - name: Test docs - uses: grafana/plugin-ci-workflows/actions/internal/plugins/docs/test@main + uses: grafana/plugin-ci-workflows/actions/internal/plugins/docs/test@plugins-release-please/v1.0.2 playwright: name: Playwright E2E tests - uses: grafana/plugin-ci-workflows/.github/workflows/playwright.yml@main + uses: grafana/plugin-ci-workflows/.github/workflows/playwright.yml@plugins-release-please/v1.0.2 if: ${{ inputs.run-playwright == true }} needs: - test-and-build @@ -703,7 +703,7 @@ jobs: playwright-docker: name: Plugins - Dockerized Playwright E2E tests - uses: grafana/plugin-ci-workflows/.github/workflows/playwright-docker.yml@main + uses: grafana/plugin-ci-workflows/.github/workflows/playwright-docker.yml@plugins-release-please/v1.0.2 if: ${{ inputs.run-playwright-docker == true }} needs: - test-and-build diff --git a/.github/workflows/playwright-docker.yml b/.github/workflows/playwright-docker.yml index 0c9a4e24..cf1e2182 100644 --- a/.github/workflows/playwright-docker.yml +++ b/.github/workflows/playwright-docker.yml @@ -168,6 +168,6 @@ jobs: if: always() steps: - name: Check matrix job status - uses: grafana/plugin-ci-workflows/actions/internal/check-matrix-status@main + uses: grafana/plugin-ci-workflows/actions/internal/check-matrix-status@plugins-release-please/v1.0.2 with: results: ${{ needs.playwright-tests.result }} diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 161bff4f..b705036a 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -261,6 +261,6 @@ jobs: if: always() steps: - name: Check matrix job status - uses: grafana/plugin-ci-workflows/actions/internal/check-matrix-status@main + uses: grafana/plugin-ci-workflows/actions/internal/check-matrix-status@plugins-release-please/v1.0.2 with: results: ${{ needs.playwright-tests.result }} diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e28ee9d0..c043251f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -3,6 +3,6 @@ ".github/workflows": "6.1.1", "actions/plugins/version-bump-changelog": "1.1.0", "actions/plugins/publish/change-plugin-scope": "1.0.0", - "actions/plugins/release-please": "1.0.1", + "actions/plugins/release-please": "1.0.2", "actions/plugins/frontend-e2e-against-stack": "1.0.1" } diff --git a/actions/plugins/release-please/CHANGELOG.md b/actions/plugins/release-please/CHANGELOG.md index 5d5ec18f..d4cc33b4 100644 --- a/actions/plugins/release-please/CHANGELOG.md +++ b/actions/plugins/release-please/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.0.2](https://github.com/grafana/plugin-ci-workflows/compare/plugins-release-please/v1.0.1...plugins-release-please/v1.0.2) (2026-03-09) + + +### 🔧 Chores + +* **deps:** update actions/checkout action to v5.0.1 ([#413](https://github.com/grafana/plugin-ci-workflows/issues/413)) ([8c591cd](https://github.com/grafana/plugin-ci-workflows/commit/8c591cdfe41c0ead6a235dcdb51f5e74af15642d)) +* **deps:** update actions/checkout action to v6 ([#437](https://github.com/grafana/plugin-ci-workflows/issues/437)) ([949a63c](https://github.com/grafana/plugin-ci-workflows/commit/949a63c075e5e00352872d5447919635da59c2f2)) +* **deps:** update actions/checkout action to v6.0.1 ([#455](https://github.com/grafana/plugin-ci-workflows/issues/455)) ([aec5016](https://github.com/grafana/plugin-ci-workflows/commit/aec5016c9a2acddc606cb728b5abfbc53eebe6e3)) +* **deps:** update actions/checkout action to v6.0.2 ([#529](https://github.com/grafana/plugin-ci-workflows/issues/529)) ([352ce11](https://github.com/grafana/plugin-ci-workflows/commit/352ce11438654fcca4c009130595750fa979903c)) +* **deps:** update actions/create-github-app-token action to v2.2.0 ([#435](https://github.com/grafana/plugin-ci-workflows/issues/435)) ([5b2407c](https://github.com/grafana/plugin-ci-workflows/commit/5b2407c17df02b33f6c4ff83de1ec363d4f44fe7)) +* **deps:** update actions/create-github-app-token action to v2.2.1 ([#475](https://github.com/grafana/plugin-ci-workflows/issues/475)) ([eeaa07a](https://github.com/grafana/plugin-ci-workflows/commit/eeaa07abac7139e34586f25eba499b819d6b09ea)) + ## [1.0.1](https://github.com/grafana/plugin-ci-workflows/compare/plugins-release-please/v1.0.0...plugins-release-please/v1.0.1) (2025-11-21) diff --git a/examples/extra/release-please.yml b/examples/extra/release-please.yml index bf820405..256b0607 100644 --- a/examples/extra/release-please.yml +++ b/examples/extra/release-please.yml @@ -13,4 +13,4 @@ jobs: steps: - name: release please version bump changelog - uses: grafana/plugin-ci-workflows/actions/plugins/release-please@plugins-release-please/v1.0.1 + uses: grafana/plugin-ci-workflows/actions/plugins/release-please@plugins-release-please/v1.0.2